Searched refs:mLastY (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DObservableScrollView.java35 private float mLastY; field in class:ObservableScrollView
73 mLastY = ev.getY();
83 mLastY = ev.getY();
142 mListener.onOverscrolled(mLastX, mLastY, mLastOverscrollAmount);
/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/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java67 private float mLastY = 0; field in class:Path_Delegate
90 mLastY = 0;
445 pathDelegate.mLastY = dy;
646 mPath.moveTo(mLastX = x, mLastY = y);
661 dy += mLastY;
662 mPath.moveTo(mLastX = dx, mLastY = dy);
675 mPath.moveTo(mLastX = 0, mLastY = 0);
677 mPath.lineTo(mLastX = x, mLastY = y);
692 mPath.moveTo(mLastX = 0, mLastY = 0);
701 dy += 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/tests/java_api/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/tests/java_api/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/tests/java_api/RsTest_16/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/services/core/java/com/android/server/wm/
H A DSurfaceControlWithBackground.java55 private float mLastX, mLastY; field in class:SurfaceControlWithBackground
117 mLastY = y;
126 mBackgroundControl.setPosition(mLastX + offsetX, mLastY + offsetY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewTouchHandler.java85 int mLastY; field in class:TaskStackViewTouchHandler
237 mLastY = mDownY;
252 mLastY = mDownY;
282 mLastY = mDownY = y;
307 mStackViewScrolledEvent.updateY(y - mLastY);
311 mLastY = y;
324 mLastY = mDownY;
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DCropView.java39 private float mLastX, mLastY; field in class:CropView
274 point[1] = (mLastY - y) / mRenderer.scale;
318 mLastY = y;
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java185 private int mLastY; field in class:KeyboardView
754 canvas.drawLine(mStartX, mStartY, mLastX, mLastY, paint);
756 canvas.drawCircle(mLastX, mLastY, 3, paint);
758 canvas.drawCircle((mStartX + mLastX) / 2, (mStartY + mLastY) / 2, 2, paint);
1300 mLastCodeY = mLastY;
1356 mLastY = touchY;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java412 int mLastY; field in class:AbsListView
3513 if (mLastY == Integer.MIN_VALUE) {
3516 if (dispatchNestedPreScroll(0, mLastY != Integer.MIN_VALUE ? mLastY - y : -rawDeltaY,
3528 mLastY != Integer.MIN_VALUE ? y - mLastY + scrollConsumedCorrection : deltaY;
3544 if (y != mLastY) {
3632 mLastY = y + lastYCorrection + scrollOffsetCorrection;
3635 if (y != mLastY) {
3638 int newDirection = y > mLastY
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java5458 private float mLastY; field in class:ViewRootImpl.SyntheticTouchNavigationHandler
5549 mLastY = mStartY;
5575 mAccumulatedY += y - mLastY;
5577 mLastY = y;

Completed in 311 milliseconds