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.java28 * @param origX the raw x coordinate of the initial touch
32 public boolean onInterceptMoveLeft(float origX, float origY); argument
37 * @param origX the raw x 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.java71 * @param origX the raw x coordinate of the initial touch
75 public boolean interceptMoveLeft(float origX, float origY); argument
81 * @param origX the raw x 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 28 milliseconds