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/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewTouchHandler.java84 int mLastY; field in class:TaskStackViewTouchHandler
236 mLastY = mDownY;
251 mLastY = mDownY;
284 mLastY = mDownY = y;
309 mStackViewScrolledEvent.updateY(y - mLastY);
313 mLastY = y;
326 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.java183 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.java413 int mLastY; field in class:AbsListView
3522 if (mLastY == Integer.MIN_VALUE) {
3525 if (dispatchNestedPreScroll(0, mLastY != Integer.MIN_VALUE ? mLastY - y : -rawDeltaY,
3537 mLastY != Integer.MIN_VALUE ? y - mLastY + scrollConsumedCorrection : deltaY;
3553 if (y != mLastY) {
3641 mLastY = y + lastYCorrection + scrollOffsetCorrection;
3644 if (y != mLastY) {
3647 int newDirection = y > mLastY
[all...]
H A DEditor.java4372 private float mLastY; field in class:Editor.MagnifierMotionAnimator
4385 + (mLastY - mAnimationStartY) * animation.getAnimatedFraction();
4397 final boolean startNewAnimation = mMagnifierIsShowing && y != mLastY;
4406 mAnimationStartY = mLastY;
4415 mLastY = y;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java5857 private float mLastY; field in class:ViewRootImpl.SyntheticTouchNavigationHandler
5948 mLastY = mStartY;
5974 mAccumulatedY += y - mLastY;
5976 mLastY = y;

Completed in 385 milliseconds