Searched refs:origX (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
D | PhotoViewCallbacks.java | 32 public boolean onInterceptMoveLeft(float origX, float origY); in onInterceptMoveLeft() argument 41 public boolean onInterceptMoveRight(float origX, float origY); in onInterceptMoveRight() argument
|
D | PhotoViewActivity.java | 417 public InterceptType onTouchIntercept(float origX, float origY) { in onTouchIntercept() argument 423 interceptLeft = listener.onInterceptMoveLeft(origX, origY); in onTouchIntercept() 426 interceptRight = listener.onInterceptMoveRight(origX, origY); in onTouchIntercept()
|
D | PhotoViewPager.java | 53 public InterceptType onTouchIntercept(float origX, float origY); in onTouchIntercept() argument
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/ |
D | PhotoViewFragment.java | 75 public boolean interceptMoveLeft(float origX, float origY); in interceptMoveLeft() argument 84 public boolean interceptMoveRight(float origX, float origY); in interceptMoveRight() argument 458 public boolean onInterceptMoveLeft(float origX, float origY) { in onInterceptMoveLeft() argument 464 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY)); in onInterceptMoveLeft() 468 public boolean onInterceptMoveRight(float origX, float origY) { in onInterceptMoveRight() argument 474 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY)); in onInterceptMoveRight()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
D | PhotoView.java | 299 public boolean interceptMoveLeft(float origX, float origY) { in interceptMoveLeft() argument 332 public boolean interceptMoveRight(float origX, float origY) { in interceptMoveRight() argument
|