Searched refs:mLastY (Results 1 – 8 of 8) sorted by relevance
/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() 572 mPath.moveTo(mLastX = x, mLastY = y); in moveTo() 587 dy += mLastY; in rMoveTo() 588 mPath.moveTo(mLastX = dx, mLastY = dy); in rMoveTo() 600 mPath.lineTo(mLastX = x, mLastY = y); in lineTo() 615 mPath.moveTo(mLastX = 0, mLastY = 0); in rLineTo() 618 dy += mLastY; in rLineTo() 619 mPath.lineTo(mLastX = dx, mLastY = dy); in rLineTo() 633 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2); in quadTo() [all …]
|
/frameworks/base/voip/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/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/base/tests/RenderScriptTests/tests/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/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 | 183 private int mLastY; field in KeyboardView 740 canvas.drawLine(mStartX, mStartY, mLastX, mLastY, paint); in onBufferDraw() 742 canvas.drawCircle(mLastX, mLastY, 3, paint); in onBufferDraw() 744 canvas.drawCircle((mStartX + mLastX) / 2, (mStartY + mLastY) / 2, 2, paint); in onBufferDraw() 1308 mLastCodeY = mLastY; 1364 mLastY = touchY;
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 378 int mLastY; field in AbsListView 2807 int incrementalDeltaY = mLastY != Integer.MIN_VALUE ? y - mLastY : deltaY; in scrollIfNeeded() 2822 if (y != mLastY) { in scrollIfNeeded() 2897 mLastY = y; in scrollIfNeeded() 2900 if (y != mLastY) { in scrollIfNeeded() 2903 int newDirection = y > mLastY ? 1 : -1; in scrollIfNeeded() 2961 mLastY = y; in scrollIfNeeded() 3032 mMotionY = mLastY = (int) ev.getY(); in onTouchEvent() 3076 mLastY = Integer.MIN_VALUE; in onTouchEvent() 3336 mLastY = y; in onTouchEvent() [all …]
|