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

/frameworks/opt/photoviewer/src/com/android/ex/photo/
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 DPhotoViewPager.java49 * @param origX the raw x coordinate of the initial touch
53 public InterceptType onTouchIntercept(float origX, float origY); argument
H A DPhotoViewController.java718 public InterceptType onTouchIntercept(float origX, float origY) { argument
724 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
727 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
482 public boolean onInterceptMoveLeft(float origX, float origY) { argument
488 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
492 public boolean onInterceptMoveRight(float origX, float origY) { argument
498 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY));
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java403 public boolean interceptMoveLeft(float origX, float origY) { argument
436 public boolean interceptMoveRight(float origX, float origY) { argument

Completed in 54 milliseconds