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

/packages/apps/DeskClock/src/com/android/deskclock/
H A DVerticalViewPager.java32 private float mLastMotionY; field in class:VerticalViewPager
87 mLastMotionY = y;
94 final float yDiff = Math.abs(y - mLastMotionY);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationContainer.java123 private float mLastMotionY; field in class:ConversationContainer
397 mLastMotionY = ev.getY();
404 final int yDiff = (int) Math.abs(y - mLastMotionY);
406 mLastMotionY = y;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedView.java100 protected float mLastMotionY; field in class:PagedView
1030 mLastMotionY = y;
1105 final int yDiff = (int) Math.abs(y - mLastMotionY);
1428 mLastMotionY = ev.getY(newPointerIndex);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedView.java120 private float mLastMotionY; field in class:PagedView
276 float y = mLastMotionY - mDownMotionY;
297 mLastMotionY = p[1];
548 mLastMotionY = p[1];
1321 mLastMotionY = y;
1573 mDownMotionY = mLastMotionY = ev.getY();
1575 float[] p = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1613 mLastMotionY = ev.getY();
1617 float[] pt = mapPointFromViewToParent(this, mLastMotionX, mLastMotionY);
1626 if (DEBUG) Log.d(TAG, "mLastMotionY
[all...]

Completed in 1582 milliseconds