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

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java91 private int mLastMotionY; field in class:ExpandHelper
393 final int yDiff = y - mLastMotionY;
396 mLastMotionY = y;
400 mInitialTouchY = mLastMotionY;
410 mLastMotionY = y;
/frameworks/base/core/java/android/widget/
H A DScrollView.java88 private int mLastMotionY; field in class:ScrollView
486 * Locally do absolute value. mLastMotionY is set to the y value
503 final int yDiff = Math.abs(y - mLastMotionY);
506 mLastMotionY = y;
532 mLastMotionY = y;
603 mLastMotionY = (int) ev.getY();
615 int deltaY = mLastMotionY - y;
630 mLastMotionY = y;
699 mLastMotionY = (int) ev.getY(index);
705 mLastMotionY
[all...]
/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...]
/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;
1856 mLastMotionY = y;
1881 mLastMotionY = mInitialMotionY = ev.getY();
1900 if (DEBUG) Log.v(TAG, "Down at " + mLastMotionX + "," + mLastMotionY
1959 mLastMotionY = mInitialMotionY = ev.getY();
1969 final float yDiff = Math.abs(y - mLastMotionY);
1977 mLastMotionY = y;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java125 protected float mLastMotionY; field in class:PagedView
352 float y = mLastMotionY - mDownMotionY;
370 mLastMotionY = p[1];
581 mLastMotionY = p[1];
1181 if (!isTouchPointInCurrentPage((int) mLastMotionX, (int) mLastMotionY)) {
1220 mDownMotionY = mLastMotionY = ev.getY();
1222 float[] p = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1256 final int yDiff = (int) Math.abs(y - mLastMotionY);
1447 mLastMotionY = ev.getY();
1451 float[] pt = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
[all...]

Completed in 137 milliseconds