Searched defs:mLastMotionY (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java91 private int mLastMotionY; field in class:ExpandHelper
394 final int yDiff = y - mLastMotionY;
397 mLastMotionY = y;
401 mInitialTouchY = mLastMotionY;
411 mLastMotionY = y;
/frameworks/base/core/java/android/widget/
H A DScrollView.java85 private int mLastMotionY; field in class:ScrollView
481 * Locally do absolute value. mLastMotionY is set to the y value
498 final int yDiff = Math.abs(y - mLastMotionY);
501 mLastMotionY = y;
527 mLastMotionY = y;
598 mLastMotionY = (int) ev.getY();
610 int deltaY = mLastMotionY - y;
625 mLastMotionY = y;
693 mLastMotionY = (int) ev.getY(index);
699 mLastMotionY
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DPagedView.java121 protected float mLastMotionY; field in class:PagedView
336 float y = mLastMotionY - mDownMotionY;
354 mLastMotionY = p[1];
544 mLastMotionY = p[1];
1092 mLastMotionY = y;
1145 if (!isTouchPointInCurrentPage((int) mLastMotionX, (int) mLastMotionY)) {
1186 final int yDiff = (int) Math.abs(y - mLastMotionY);
1326 mDownMotionY = mLastMotionY = ev.getY();
1328 float[] p = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1376 mLastMotionY
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java167 private float mLastMotionY; field in class:ViewPager
1759 * Locally do absolute value. mLastMotionY is set to the y value
1780 mLastMotionY = y;
1790 mLastMotionY = y;
1815 mLastMotionY = mInitialMotionY = ev.getY();
1833 if (DEBUG) Log.v(TAG, "Down at " + mLastMotionX + "," + mLastMotionY
1894 mLastMotionY = mInitialMotionY = ev.getY();
1904 final float yDiff = Math.abs(y - mLastMotionY);
1911 mLastMotionY = y;

Completed in 247 milliseconds