Searched refs:mLastY (Results 1 - 12 of 12) 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/base/voip/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;
572 mPath.moveTo(mLastX = x, mLastY = y);
587 dy += mLastY;
588 mPath.moveTo(mLastX = dx, mLastY = dy);
600 mPath.lineTo(mLastX = x, mLastY = y);
615 mPath.moveTo(mLastX = 0, mLastY = 0);
618 dy += mLastY;
619 mPath.lineTo(mLastX = dx, mLastY = dy);
633 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/base/tests/RenderScriptTests/tests_v11/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/base/tests/RenderScriptTests/tests_v14/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/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DRSTestCore.java44 int mLastY; field in class:RSTestCore
217 mLastY = y;
223 int dy = mLastY - y;
232 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.java391 int mLastY; field in class:AbsListView
3042 int incrementalDeltaY = mLastY != Integer.MIN_VALUE ? y - mLastY : deltaY;
3057 if (y != mLastY) {
3133 mLastY = y;
3136 if (y != mLastY) {
3139 int newDirection = y > mLastY ? 1 : -1;
3197 mLastY = y;
3280 mMotionY = mLastY = (int) ev.getY();
3324 mLastY
[all...]

Completed in 972 milliseconds