/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Path_Delegate.java | 62 private float mLastY = 0; field in Path_Delegate 449 pathDelegate.mLastY = dy; in native_setLastPoint() 578 mPath.moveTo(mLastX = x, mLastY = y); in moveTo() 593 dy += mLastY; in rMoveTo() 594 mPath.moveTo(mLastX = dx, mLastY = dy); in rMoveTo() 606 mPath.lineTo(mLastX = x, mLastY = y); in lineTo() 621 mPath.moveTo(mLastX = 0, mLastY = 0); in rLineTo() 624 dy += mLastY; in rLineTo() 625 mPath.lineTo(mLastX = dx, mLastY = dy); in rLineTo() 639 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2); in quadTo() [all …]
|
/frameworks/opt/net/voip/src/jni/rtp/ |
D | EchoSuppressor.cpp | 81 mLastY = 0; in EchoSuppressor() 133 mLastY += y; in run() 134 sum += ((mLastY >= 0) ? mLastY : -mLastY) >> 15; in run() 135 mLastY -= (mLastY >> 10) + y; in run()
|
D | EchoSuppressor.h | 53 int32_t mLastY; variable
|
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/ |
D | RsListRS.java | 94 int mLastY; field in RsListRS 100 mLastY = y; in onActionDown() 105 int dy = mLastY - y; in onActionMove() 114 mLastY = y; in onActionMove()
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/ |
D | TouchHandler.java | 29 float mLastY; field in TouchHandler 69 mLastY = y; in onActionDown() 87 float dy = mLastY - y; in onActionMove() 107 mLastY = y; in onActionMove()
|
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/ |
D | TransformTestActivity.java | 73 private float mLastY; field in TransformTestActivity.TransformView 121 mLastY = detector.getFocusY(); in onScaleEnd() 154 mLastY = event.getY(); in onTouchEvent() 161 mPosY += y - mLastY; in onTouchEvent() 163 mLastY = y; in onTouchEvent()
|
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
D | RSTestCore.java | 44 int mLastY; field in RSTestCore 188 mLastY = y; in onActionDown() 194 int dy = mLastY - y; in onActionMove() 203 mLastY = y; in onActionMove()
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
D | RSTestCore.java | 44 int mLastY; field in RSTestCore 192 mLastY = y; in onActionDown() 198 int dy = mLastY - y; in onActionMove() 207 mLastY = y; in onActionMove()
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
D | RSTestCore.java | 44 int mLastY; field in RSTestCore 220 mLastY = y; in onActionDown() 226 int dy = mLastY - y; in onActionMove() 235 mLastY = y; in onActionMove()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/ |
D | CropView.java | 40 private float mLastX, mLastY; field in CropView 275 point[1] = (mLastY - y) / mRenderer.scale; in onTouchEvent() 319 mLastY = y; in onTouchEvent()
|
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/ |
D | SceneGraphRS.java | 71 int mLastY; field in SceneGraphRS 90 mLastY = y; in touchEvent()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | KeyboardView.java | 184 private int mLastY; field in KeyboardView 741 canvas.drawLine(mStartX, mStartY, mLastX, mLastY, paint); in onBufferDraw() 743 canvas.drawCircle(mLastX, mLastY, 3, paint); in onBufferDraw() 745 canvas.drawCircle((mStartX + mLastX) / 2, (mStartY + mLastY) / 2, 2, paint); in onBufferDraw() 1304 mLastCodeY = mLastY; 1360 mLastY = touchY;
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 400 int mLastY; field in AbsListView 3198 int incrementalDeltaY = mLastY != Integer.MIN_VALUE ? y - mLastY : deltaY; in scrollIfNeeded() 3213 if (y != mLastY) { in scrollIfNeeded() 3289 mLastY = y; in scrollIfNeeded() 3292 if (y != mLastY) { in scrollIfNeeded() 3295 int newDirection = y > mLastY ? 1 : -1; in scrollIfNeeded() 3353 mLastY = y; in scrollIfNeeded() 3456 mLastY = y; in onTouchEvent() 3477 mLastY = y; in onTouchEvent() 3497 mLastY = mMotionY; in onTouchDown() [all …]
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 4503 private float mLastY; field in ViewRootImpl.SyntheticTouchNavigationHandler 4598 mLastY = mStartY; in process() 4624 mAccumulatedY += y - mLastY; in process() 4626 mLastY = y; in process()
|