/frameworks/layoutlib/bridge/src/android/graphics/ |
D | Path_Delegate.java | 71 private float mLastY = 0; field in Path_Delegate 94 mLastY = 0; in reset() 449 pathDelegate.mLastY = dy; in nSetLastPoint() 656 mPath.moveTo(mLastX = x, mLastY = y); in moveTo() 671 dy += mLastY; in rMoveTo() 672 mPath.moveTo(mLastX = dx, mLastY = dy); in rMoveTo() 685 mPath.moveTo(mLastX = 0, mLastY = 0); in lineTo() 687 mPath.lineTo(mLastX = x, mLastY = y); in lineTo() 702 mPath.moveTo(mLastX = 0, mLastY = 0); in rLineTo() 711 dy += mLastY; in rLineTo() [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/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | ObservableScrollView.java | 35 private float mLastY; field in ObservableScrollView 73 mLastY = ev.getY(); in onTouchEvent() 83 mLastY = ev.getY(); in onInterceptTouchEvent() 142 mListener.onOverscrolled(mLastX, mLastY, mLastOverscrollAmount); in onOverScrolled()
|
/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/tests/java_api/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/tests/java_api/RsTest_16/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/tests/java_api/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/base/packages/WallpaperCropper/src/com/android/wallpapercropper/ |
D | CropView.java | 39 private float mLastX, mLastY; field in CropView 274 point[1] = (mLastY - y) / mRenderer.scale; in onTouchEvent() 318 mLastY = y; in onTouchEvent()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | KeyboardView.java | 192 private int mLastY; field in KeyboardView 764 canvas.drawLine(mStartX, mStartY, mLastX, mLastY, paint); in onBufferDraw() 766 canvas.drawCircle(mLastX, mLastY, 3, paint); in onBufferDraw() 768 canvas.drawCircle((mStartX + mLastX) / 2, (mStartY + mLastY) / 2, 2, paint); in onBufferDraw() 1312 mLastCodeY = mLastY; 1368 mLastY = touchY;
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 430 int mLastY; field in AbsListView 3567 if (mLastY == Integer.MIN_VALUE) { in scrollIfNeeded() 3570 if (dispatchNestedPreScroll(0, mLastY != Integer.MIN_VALUE ? mLastY - y : -rawDeltaY, in scrollIfNeeded() 3582 mLastY != Integer.MIN_VALUE ? y - mLastY + scrollConsumedCorrection : deltaY; in scrollIfNeeded() 3598 if (y != mLastY) { in scrollIfNeeded() 3686 mLastY = y + lastYCorrection + scrollOffsetCorrection; in scrollIfNeeded() 3689 if (y != mLastY) { in scrollIfNeeded() 3692 int newDirection = y > mLastY ? 1 : -1; in scrollIfNeeded() 3752 mLastY = y + lastYCorrection + scrollOffsetCorrection; in scrollIfNeeded() 3887 mLastY = y; in onTouchEvent() [all …]
|
D | Editor.java | 4541 private float mLastY; field in Editor.MagnifierMotionAnimator 4554 + (mLastY - mAnimationStartY) * animation.getAnimatedFraction(); in MagnifierMotionAnimator() 4566 final boolean startNewAnimation = mMagnifierIsShowing && y != mLastY; in show() 4575 mAnimationStartY = mLastY; in show() 4584 mLastY = y; in show()
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 6772 private float mLastY; 6863 mLastY = mStartY; 6889 mAccumulatedY += y - mLastY; 6891 mLastY = y;
|