Searched defs:mLastY (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
H A DRsListRS.java94 int mLastY; field in class:RsListRS
100 mLastY = y;
105 int dy = mLastY - y;
114 mLastY = y;
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DTouchHandler.java29 float mLastY; field in class:TouchHandler
69 mLastY = y;
87 float dy = mLastY - y;
107 mLastY = y;
/frameworks/opt/net/voip/src/jni/rtp/
H A DEchoSuppressor.h53 int32_t mLastY; member in class:EchoSuppressor
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java73 private float mLastY; field in class:TransformTestActivity.TransformView
121 mLastY = detector.getFocusY();
154 mLastY = event.getY();
161 mPosY += y - mLastY;
163 mLastY = y;
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
H A DRSTestCore.java44 int mLastY; field in class:RSTestCore
188 mLastY = y;
194 int dy = mLastY - y;
203 mLastY = y;
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
H A DRSTestCore.java44 int mLastY; field in class:RSTestCore
192 mLastY = y;
198 int dy = mLastY - y;
207 mLastY = y;
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
H A DRSTestCore.java44 int mLastY; field in class:RSTestCore
192 mLastY = y;
198 int dy = mLastY - y;
207 mLastY = y;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DObservableScrollView.java35 private float mLastY; field in class:ObservableScrollView
73 mLastY = ev.getY();
83 mLastY = ev.getY();
142 mListener.onOverscrolled(mLastX, mLastY, mLastOverscrollAmount);
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DCropView.java40 private float mLastX, mLastY; field in class:CropView
275 point[1] = (mLastY - y) / mRenderer.scale;
319 mLastY = y;
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSceneGraphRS.java71 int mLastY; field in class:SceneGraphRS
90 mLastY = y;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java62 private float mLastY = 0; field in class:Path_Delegate
449 pathDelegate.mLastY = dy;
583 mPath.moveTo(mLastX = x, mLastY = y);
598 dy += mLastY;
599 mPath.moveTo(mLastX = dx, mLastY = dy);
612 mPath.moveTo(mLastX = 0, mLastY = 0);
614 mPath.lineTo(mLastX = x, mLastY = y);
629 mPath.moveTo(mLastX = 0, mLastY = 0);
632 dy += mLastY;
633 mPath.lineTo(mLastX = dx, mLastY
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java185 private int mLastY; field in class:KeyboardView
745 canvas.drawLine(mStartX, mStartY, mLastX, mLastY, paint);
747 canvas.drawCircle(mLastX, mLastY, 3, paint);
749 canvas.drawCircle((mStartX + mLastX) / 2, (mStartY + mLastY) / 2, 2, paint);
1309 mLastCodeY = mLastY;
1365 mLastY = touchY;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java404 int mLastY; field in class:AbsListView
3357 if (mLastY == Integer.MIN_VALUE) {
3360 if (dispatchNestedPreScroll(0, mLastY != Integer.MIN_VALUE ? mLastY - y : -rawDeltaY,
3372 mLastY != Integer.MIN_VALUE ? y - mLastY + scrollConsumedCorrection : deltaY;
3388 if (y != mLastY) {
3479 mLastY = y + lastYCorrection + scrollOffsetCorrection;
3482 if (y != mLastY) {
3485 int newDirection = y > mLastY
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4699 private float mLastY; field in class:ViewRootImpl.SyntheticTouchNavigationHandler
4790 mLastY = mStartY;
4816 mAccumulatedY += y - mLastY;
4818 mLastY = y;

Completed in 3461 milliseconds