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.java29 * @param origY the raw y coordinate of the initial touch
32 public boolean onInterceptMoveLeft(float origX, float origY); argument
38 * @param origY the raw y coordinate of the initial touch
41 public boolean onInterceptMoveRight(float origX, float origY); argument
H A DPhotoViewActivity.java417 public InterceptType onTouchIntercept(float origX, float origY) { argument
423 interceptLeft = listener.onInterceptMoveLeft(origX, origY);
426 interceptRight = listener.onInterceptMoveRight(origX, origY);
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java72 * @param origY the raw y coordinate of the initial touch
75 public boolean interceptMoveLeft(float origX, float origY); argument
82 * @param origY the raw y coordinate of the initial touch
84 public boolean interceptMoveRight(float origX, float origY); argument
458 public boolean onInterceptMoveLeft(float origX, float origY) { argument
464 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY));
468 public boolean onInterceptMoveRight(float origX, float origY) { argument
474 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY));
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java299 public boolean interceptMoveLeft(float origX, float origY) { argument
332 public boolean interceptMoveRight(float origX, float origY) { argument

Completed in 185 milliseconds