Searched refs:mLastMotionY (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSScrollLayout.java42 private int mLastMotionY; field in class:QSScrollLayout
97 mLastMotionY = (int) ev.getY();
101 if (mLastMotionY >= 0 && Math.abs(ev.getY() - mLastMotionY) > mTouchSlop
104 mLastMotionY = (int) ev.getY();
109 mLastMotionY = -1;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java90 private float mLastMotionY; field in class:ExpandHelper
284 mLastMotionY = ev.getRawY();
310 mLastMotionY = ev.getRawY();
341 mLastMotionY = ev.getRawY();
418 mLastMotionY = ev.getRawY();
439 mLastMotionY = ev.getRawY();
446 final float rawHeight = ev.getRawY() - mLastMotionY + mCurrentHeight;
467 mLastMotionY = ev.getRawY();
480 mLastMotionY = ev.getRawY();
502 mLastMotionY
[all...]
/frameworks/support/customview/src/main/java/androidx/customview/widget/
H A DViewDragHelper.java123 private float[] mLastMotionY; field in class:ViewDragHelper
796 Arrays.fill(mLastMotionY, 0);
810 mLastMotionY[pointerId] = 0;
831 System.arraycopy(mLastMotionY, 0, lmy, 0, mLastMotionY.length);
840 mLastMotionY = lmy;
850 mInitialMotionY[pointerId] = mLastMotionY[pointerId] = y;
866 mLastMotionY[pointerId] = y;
1169 final int idy = (int) (y - mLastMotionY[mActivePointerId]);
1367 final float dy = mLastMotionY[pointerI
[all...]
/frameworks/base/core/java/android/widget/
H A DScrollView.java94 private int mLastMotionY; field in class:ScrollView
521 * Locally do absolute value. mLastMotionY is set to the y value
538 final int yDiff = Math.abs(y - mLastMotionY);
541 mLastMotionY = y;
568 mLastMotionY = y;
649 mLastMotionY = (int) ev.getY();
662 int deltaY = mLastMotionY - y;
682 mLastMotionY = y - mScrollOffset[1];
701 mLastMotionY -= mScrollOffset[1];
754 mLastMotionY
[all...]
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java109 private int mLastMotionY; field in class:NestedScrollView
712 * Locally do absolute value. mLastMotionY is set to the y value
729 final int yDiff = Math.abs(y - mLastMotionY);
733 mLastMotionY = y;
757 mLastMotionY = y;
831 mLastMotionY = (int) ev.getY();
844 int deltaY = mLastMotionY - y;
865 mLastMotionY = y - mScrollOffset[1];
885 mLastMotionY -= mScrollOffset[1];
937 mLastMotionY
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java160 private float mLastMotionY; field in class:ViewPager
1844 * Locally do absolute value. mLastMotionY is set to the y value
1865 mLastMotionY = y;
1876 mLastMotionY = y;
1901 mLastMotionY = mInitialMotionY = ev.getY();
1920 if (DEBUG) Log.v(TAG, "Down at " + mLastMotionX + "," + mLastMotionY
1972 mLastMotionY = mInitialMotionY = ev.getY();
1982 final float yDiff = Math.abs(y - mLastMotionY);
1990 mLastMotionY = y;
/frameworks/support/viewpager/src/main/java/androidx/viewpager/widget/
H A DViewPager.java200 private float mLastMotionY; field in class:ViewPager
2062 * Locally do absolute value. mLastMotionY is set to the y value
2083 mLastMotionY = y;
2094 mLastMotionY = y;
2119 mLastMotionY = mInitialMotionY = ev.getY();
2140 Log.v(TAG, "Down at " + mLastMotionX + "," + mLastMotionY
2200 mLastMotionY = mInitialMotionY = ev.getY();
2216 final float yDiff = Math.abs(y - mLastMotionY);
2226 mLastMotionY = y;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java159 private int mLastMotionY; field in class:NotificationStackScrollLayout
1621 mLastMotionY = (int) ev.getY();
1635 int deltaY = mLastMotionY - y;
1648 mLastMotionY = y;
1714 mLastMotionY = (int) ev.getY(index);
1721 mLastMotionY = (int) ev.getY(ev.findPointerIndex(mActivePointerId));
1813 mLastMotionY = (int) ev.getY(newPointerIndex);
3447 * Locally do absolute value. mLastMotionY is set to the y value
3465 final int yDiff = Math.abs(y - mLastMotionY);
3469 mLastMotionY
[all...]

Completed in 1679 milliseconds