Searched refs:mLastMotionY (Results 1 - 5 of 5) sorted by path

/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/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/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];
1094 mLastMotionY = y;
1147 if (!isTouchPointInCurrentPage((int) mLastMotionX, (int) mLastMotionY)) {
1188 final int yDiff = (int) Math.abs(y - mLastMotionY);
1328 mDownMotionY = mLastMotionY = ev.getY();
1330 float[] p = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1381 mLastMotionY
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java173 private float mLastMotionY; field in class:ViewPager
1824 * Locally do absolute value. mLastMotionY is set to the y value
1845 mLastMotionY = y;
1855 mLastMotionY = y;
1880 mLastMotionY = mInitialMotionY = ev.getY();
1898 if (DEBUG) Log.v(TAG, "Down at " + mLastMotionX + "," + mLastMotionY
1959 mLastMotionY = mInitialMotionY = ev.getY();
1969 final float yDiff = Math.abs(y - mLastMotionY);
1976 mLastMotionY = y;
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java119 private float[] mLastMotionY; field in class:ViewDragHelper
776 Arrays.fill(mLastMotionY, 0);
790 mLastMotionY[pointerId] = 0;
811 System.arraycopy(mLastMotionY, 0, lmy, 0, mLastMotionY.length);
820 mLastMotionY = lmy;
830 mInitialMotionY[pointerId] = mLastMotionY[pointerId] = y;
842 mLastMotionY[pointerId] = y;
1115 final int idy = (int) (y - mLastMotionY[mActivePointerId]);
1309 final float dy = mLastMotionY[pointerI
[all...]

Completed in 136 milliseconds