Searched defs:yoff (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
H A DAllocationAdapter.java78 public void subData2D(int xoff, int yoff, int w, int h, int[] d) { argument
79 super.copy2DRangeFrom(xoff, yoff, w, h, d);
84 public void subData2D(int xoff, int yoff, int w, int h, float[] d) { argument
85 super.copy2DRangeFrom(xoff, yoff, w, h, d);
H A DAllocation.java878 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
883 if (xoff < 0 || yoff < 0) {
889 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
895 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) { argument
897 validate2DRange(xoff, yoff, w, h);
898 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID,
902 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, short[] data) { argument
904 validate2DRange(xoff, yoff, w, h);
905 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID,
909 void copy2DRangeFromUnchecked(int xoff, int yoff, in argument
916 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, float[] data) argument
934 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
949 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
964 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
979 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
996 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
1015 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
1029 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
1050 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1061 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1072 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1083 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1104 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1113 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1122 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1131 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1152 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
[all...]
H A DRenderScript.java413 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes); argument
414 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) { argument
416 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
418 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes); argument
419 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) { argument
421 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
423 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes); argument
424 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) { argument
426 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
428 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, in argument
429 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
433 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
434 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
457 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
458 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
462 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
463 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
467 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
468 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
472 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
473 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp216 void Allocation::validate2DRange(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h) { argument
220 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
226 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
228 validate2DRange(xoff, yoff, w, h);
229 rsAllocation2DData(mRS->getContext(), getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace,
233 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
235 validate2DRange(xoff, yoff, w, h);
236 rsAllocationCopy2DRange(mRS->getContext(), getIDSafe(), xoff, yoff,
242 void Allocation::copy2DRangeTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, argument
244 validate2DRange(xoff, yoff,
249 copy2DStridedFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data, size_t stride) argument
260 copy2DStridedTo(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, void *data, size_t stride) argument
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocationThunker.java178 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) { argument
179 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
181 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) { argument
182 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
184 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) { argument
185 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
187 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) { argument
188 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
191 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, argument
194 mN.copy2DRangeFrom(xoff, yoff,
196 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
[all...]
H A DAllocation.java820 private void validate2DRange(int xoff, int yoff, int w, int h) { argument
825 if (xoff < 0 || yoff < 0) {
831 if (((xoff + w) > mCurrentDimX) || ((yoff + h) > mCurrentDimY)) {
837 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, byte[] data) { argument
839 validate2DRange(xoff, yoff, w, h);
840 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID,
844 void copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, short[] data) { argument
846 validate2DRange(xoff, yoff, w, h);
847 mRS.nAllocationData2D(getIDSafe(), xoff, yoff, mSelectedLOD, mSelectedFace.mID,
851 void copy2DRangeFromUnchecked(int xoff, int yoff, in argument
858 copy2DRangeFromUnchecked(int xoff, int yoff, int w, int h, float[] data) argument
876 copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) argument
891 copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) argument
906 copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) argument
921 copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) argument
938 copy2DRangeFrom(int xoff, int yoff, int w, int h, Allocation data, int dataXoff, int dataYoff) argument
957 copy2DRangeFrom(int xoff, int yoff, Bitmap data) argument
971 validate3DRange(int xoff, int yoff, int zoff, int w, int h, int d) argument
992 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1003 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1014 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1025 copy3DRangeFromUnchecked(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1046 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, byte[] data) argument
1055 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, short[] data) argument
1064 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, int[] data) argument
1073 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, float[] data) argument
1094 copy3DRangeFrom(int xoff, int yoff, int zoff, int w, int h, int d, Allocation data, int dataXoff, int dataYoff, int dataZoff) argument
[all...]
H A DRenderScript.java336 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes); argument
337 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) { argument
339 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
341 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes); argument
342 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) { argument
344 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
346 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes); argument
347 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) { argument
349 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
351 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, in argument
352 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) argument
356 rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
357 nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) argument
380 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
381 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, byte[] d, int sizeBytes) argument
385 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
386 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, short[] d, int sizeBytes) argument
390 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
391 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, int[] d, int sizeBytes) argument
395 rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
396 nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip, int w, int h, int depth, float[] d, int sizeBytes) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java879 public void showAsDropDown(View anchor, int xoff, int yoff) { argument
884 registerForScrollChanged(anchor, xoff, yoff);
892 updateAboveAnchor(findDropDownPosition(anchor, p, xoff, yoff));
1108 int xoff, int yoff) {
1113 p.y = mDrawingLocation[1] + anchorHeight + yoff;
1123 int screenY = mScreenLocation[1] + anchorHeight + yoff;
1135 scrollY + mPopupHeight + anchor.getHeight() + yoff);
1143 p.y = mDrawingLocation[1] + anchor.getHeight() + yoff;
1148 onTop = (displayFrame.bottom - mScreenLocation[1] - anchor.getHeight() - yoff) <
1149 (mScreenLocation[1] - yoff
1107 findDropDownPosition(View anchor, WindowManager.LayoutParams p, int xoff, int yoff) argument
1457 update(View anchor, int xoff, int yoff, int width, int height) argument
1461 update(View anchor, boolean updateLocation, int xoff, int yoff, boolean updateDimension, int width, int height) argument
1528 registerForScrollChanged(View anchor, int xoff, int yoff) argument
[all...]
/frameworks/rs/driver/
H A DrsdAllocation.cpp93 uint32_t xoff, uint32_t yoff, uint32_t zoff,
98 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
105 uint32_t xoff, uint32_t yoff, uint32_t lod,
117 RSD_CALL_GL(glTexSubImage2D, t, lod, xoff, yoff, w, h, drv->glFormat, drv->glType, ptr);
849 uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face,
861 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
869 for (uint32_t line=yoff; line < (yoff+h); line++) {
882 uint8_t *dst = GetOffsetPtr(alloc, xoff, yoff, 0, lod, face);
884 for (uint32_t line=(yoff >>
92 GetOffsetPtr(const android::renderscript::Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, RsAllocationCubemapFace face) argument
104 Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h) argument
848 rsdAllocationData2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
899 rsdAllocationData3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
950 rsdAllocationRead2D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
979 rsdAllocationRead3D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/rs/
H A DrsAllocation.cpp105 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
107 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
111 void Allocation::data(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, argument
114 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
132 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
146 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
149 void Allocation::read(Context *rsc, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, argument
157 rsc->mHal.funcs.allocation.read3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
517 void rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, argument
520 a->data(rsc, xoff, yoff, lo
523 rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
683 rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
[all...]
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp490 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
494 LOG_API("nAllocation2DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
496 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
501 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
505 LOG_API("nAllocation2DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
507 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
512 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
516 LOG_API("nAllocation2DData_i, con(%p), adapter(%p), xoff(%i), yoff(
523 nAllocationData2D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jfloatArray data, int sizeBytes) argument
558 nAllocationData3D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jshortArray data, int sizeBytes) argument
569 nAllocationData3D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jbyteArray data, int sizeBytes) argument
580 nAllocationData3D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jintArray data, int sizeBytes) argument
591 nAllocationData3D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jfloatArray data, int sizeBytes) argument
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp660 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
664 LOG_API("nAllocation2DData_s, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
666 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
671 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
675 LOG_API("nAllocation2DData_b, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
677 rsAllocation2DData(con, (RsAllocation)alloc, xoff, yoff, lod, (RsAllocationCubemapFace)face, w, h, ptr, sizeBytes, 0);
682 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, argument
686 LOG_API("nAllocation2DData_i, con(%p), adapter(%p), xoff(%i), yoff(
693 nAllocationData2D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face, jint w, jint h, jfloatArray data, int sizeBytes) argument
728 nAllocationData3D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jshortArray data, int sizeBytes) argument
739 nAllocationData3D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jbyteArray data, int sizeBytes) argument
750 nAllocationData3D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jintArray data, int sizeBytes) argument
761 nAllocationData3D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint zoff, jint lod, jint w, jint h, jint d, jfloatArray data, int sizeBytes) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1452 int yoff;
1456 yoff = mScroller.getCurrY();
1459 yoff = mScrollY;
1462 layerCanvas.translate(0, -yoff);
2298 int yoff;
2301 yoff = mScroller.getCurrY();
2303 yoff = mScrollY;
2305 if (mCurScrollY != yoff) {
2306 mCurScrollY = yoff;
2361 mHardwareYOffset = yoff;
2410 drawSoftware(Surface surface, AttachInfo attachInfo, int yoff, boolean scalingRequired, Rect dirty) argument
[all...]

Completed in 442 milliseconds