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

/frameworks/support/design/src/android/support/design/widget/
H A DHeaderBehavior.java43 private int mLastMotionY; field in class:HeaderBehavior
72 mLastMotionY = y;
91 final int yDiff = Math.abs(y - mLastMotionY);
94 mLastMotionY = y;
130 mLastMotionY = y;
146 int dy = mLastMotionY - y;
158 mLastMotionY = y;
/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/core-ui/java/android/support/v4/widget/
H A DViewDragHelper.java119 private float[] mLastMotionY; field in class:ViewDragHelper
785 Arrays.fill(mLastMotionY, 0);
799 mLastMotionY[pointerId] = 0;
820 System.arraycopy(mLastMotionY, 0, lmy, 0, mLastMotionY.length);
829 mLastMotionY = lmy;
839 mInitialMotionY[pointerId] = mLastMotionY[pointerId] = y;
855 mLastMotionY[pointerId] = y;
1158 final int idy = (int) (y - mLastMotionY[mActivePointerId]);
1356 final float dy = mLastMotionY[pointerI
[all...]
H A DNestedScrollView.java105 private int mLastMotionY; field in class:NestedScrollView
664 * Locally do absolute value. mLastMotionY is set to the y value
681 final int yDiff = Math.abs(y - mLastMotionY);
685 mLastMotionY = y;
709 mLastMotionY = y;
783 mLastMotionY = (int) ev.getY();
796 int deltaY = mLastMotionY - y;
817 mLastMotionY = y - mScrollOffset[1];
837 mLastMotionY -= mScrollOffset[1];
889 mLastMotionY
[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/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/core-ui/java/android/support/v4/view/
H A DViewPager.java194 private float mLastMotionY; field in class:ViewPager
2054 * Locally do absolute value. mLastMotionY is set to the y value
2075 mLastMotionY = y;
2086 mLastMotionY = y;
2111 mLastMotionY = mInitialMotionY = ev.getY();
2132 Log.v(TAG, "Down at " + mLastMotionX + "," + mLastMotionY
2192 mLastMotionY = mInitialMotionY = ev.getY();
2208 final float yDiff = Math.abs(y - mLastMotionY);
2218 mLastMotionY = y;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java145 private int mLastMotionY; field in class:NotificationStackScrollLayout
1434 mLastMotionY = (int) ev.getY();
1448 int deltaY = mLastMotionY - y;
1461 mLastMotionY = y;
1527 mLastMotionY = (int) ev.getY(index);
1534 mLastMotionY = (int) ev.getY(ev.findPointerIndex(mActivePointerId));
1626 mLastMotionY = (int) ev.getY(newPointerIndex);
3202 * Locally do absolute value. mLastMotionY is set to the y value
3220 final int yDiff = Math.abs(y - mLastMotionY);
3224 mLastMotionY
[all...]

Completed in 1592 milliseconds