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

/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java49 * @param origX the raw x coordinate of the initial touch
53 public InterceptType onTouchIntercept(float origX, float origY); argument
H A DPhotoViewCallbacks.java44 * @param origX the raw x coordinate of the initial touch
48 public boolean onInterceptMoveLeft(float origX, float origY); argument
53 * @param origX the raw x 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.java69 * @param origX the raw x coordinate of the initial touch
73 public boolean interceptMoveLeft(float origX, float origY); argument
79 * @param origX the raw x 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 1254 milliseconds