Searched refs: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
H A DEchoSuppressor.cpp81 mLastY = 0;
133 mLastY += y;
134 sum += ((mLastY >= 0) ? mLastY : -mLastY) >> 15;
135 mLastY -= (mLastY >> 10) + 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;
578 mPath.moveTo(mLastX = x, mLastY = y);
593 dy += mLastY;
594 mPath.moveTo(mLastX = dx, mLastY = dy);
606 mPath.lineTo(mLastX = x, mLastY = y);
621 mPath.moveTo(mLastX = 0, mLastY = 0);
624 dy += mLastY;
625 mPath.lineTo(mLastX = dx, mLastY = dy);
639 mPath.quadTo(x1, y1, mLastX = x2, mLastY
[all...]
/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/src/com/android/rs/test/
H A DRSTestCore.java44 int mLastY; field in class:RSTestCore
220 mLastY = y;
226 int dy = mLastY - y;
235 mLastY = y;
/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/core/java/android/inputmethodservice/
H A DKeyboardView.java184 private int mLastY; field in class:KeyboardView
741 canvas.drawLine(mStartX, mStartY, mLastX, mLastY, paint);
743 canvas.drawCircle(mLastX, mLastY, 3, paint);
745 canvas.drawCircle((mStartX + mLastX) / 2, (mStartY + mLastY) / 2, 2, paint);
1304 mLastCodeY = mLastY;
1360 mLastY = touchY;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java400 int mLastY; field in class:AbsListView
3198 int incrementalDeltaY = mLastY != Integer.MIN_VALUE ? y - mLastY : deltaY;
3213 if (y != mLastY) {
3289 mLastY = y;
3292 if (y != mLastY) {
3295 int newDirection = y > mLastY ? 1 : -1;
3353 mLastY = y;
3456 mLastY = y;
3477 mLastY
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java4503 private float mLastY; field in class:ViewRootImpl.SyntheticTouchNavigationHandler
4598 mLastY = mStartY;
4624 mAccumulatedY += y - mLastY;
4626 mLastY = y;

Completed in 633 milliseconds