HomeSort by relevance Sort by last modified time
    Searched defs:mLastMotionY (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/view/
GestureDetector.java 231 private float mLastMotionY;
482 mLastMotionY = ev.getY(index);
507 mLastMotionY = y;
531 final float scrollY = mLastMotionY - y;
542 mLastMotionY = y;
554 mLastMotionY = y;
  /external/quake/quake/src/WinQuake/
gl_vidandroid.cpp 526 float mLastMotionY;
546 mLastMotionY = y;
558 mScrollY = mLastMotionY - y;
560 mLastMotionY = y;
  /frameworks/base/core/java/android/widget/
ScrollView.java 76 private float mLastMotionY;
465 * Locally do absolute value. mLastMotionY is set to the y value
476 final int yDiff = (int) Math.abs(y - mLastMotionY);
479 mLastMotionY = y;
501 mLastMotionY = y;
567 mLastMotionY = ev.getY();
576 final int deltaY = (int) (mLastMotionY - y);
577 mLastMotionY = y;
646 mLastMotionY = y;
652 mLastMotionY = ev.getY(ev.findPointerIndex(mActivePointerId))
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java 119 private float mLastMotionY;
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java 78 private float mLastMotionY;
521 * Locally do absolute value. mLastMotionY is set to the y value of
534 final int yDiff = (int) Math.abs(y - mLastMotionY);
537 mLastMotionY = y;
571 mLastMotionY = y;
643 mLastMotionY = mHorizontal ? ev.getX() : ev.getY();
663 final int deltaY = (int) (mLastMotionY - y);
664 mLastMotionY = y;
764 mLastMotionY = y;
771 mLastMotionY = mHorizonta
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 94 protected float mLastMotionY;
    [all...]

Completed in 501 milliseconds