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

/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java50 * @param origY the raw y coordinate of the initial touch
53 public InterceptType onTouchIntercept(float origX, float origY); argument
H A DPhotoViewCallbacks.java45 * @param origY the raw y coordinate of the initial touch
48 public boolean onInterceptMoveLeft(float origX, float origY); argument
54 * @param origY the raw y coordinate of the initial touch
57 public boolean onInterceptMoveRight(float origX, float origY); argument
H A DPhotoViewController.java652 public InterceptType onTouchIntercept(float origX, float origY) { argument
658 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
661 interceptRight = listener.onInterceptMoveRight(origX, origY);
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java70 * @param origY the raw y coordinate of the initial touch
73 public boolean interceptMoveLeft(float origX, float origY); argument
80 * @param origY the raw y coordinate of the initial touch
82 public boolean interceptMoveRight(float origX, float origY); argument
489 public boolean onInterceptMoveLeft(float origX, float origY) { argument
495 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
499 public boolean onInterceptMoveRight(float origX, float origY) { argument
505 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY));
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java432 public boolean interceptMoveLeft(float origX, float origY) { argument
465 public boolean interceptMoveRight(float origX, float origY) { argument

Completed in 74 milliseconds