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

/frameworks/opt/photoviewer/src/com/android/ex/photo/
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 DPhotoViewPager.java50 * @param origY the raw y 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.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
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 81 milliseconds