Searched refs:origY (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/core/jni/ |
D | android_hardware_camera2_impl_CameraExtensionJpegProcessor.cpp | 62 Transform(int origX, int origY, int oneX, int oneY); 253 Transform::Transform(int origX, int origY, int oneX, int oneY) in Transform() argument 254 : mOrigX(origX), mOrigY(origY), mOneX(oneX), mOneY(oneY) { in Transform() 255 if (origX == oneX || origY == oneY) { in Transform() 264 if (oneX > origX && oneY > origY) { in Transform() 271 mOutputHeight = abs(oneY - origY); in Transform() 272 } else if (oneX < origX && oneY > origY) { in Transform() 278 mOutputWidth = abs(oneY - origY); in Transform() 280 } else if (oneX > origX && oneY < origY) { in Transform() 286 mOutputWidth = abs(oneY - origY); in Transform() [all …]
|
/frameworks/ex/camera2/extensions/jni/ |
D | JpegEncoder.cpp | 60 Transform(int origX, int origY, int oneX, int oneY); 251 Transform::Transform(int origX, int origY, int oneX, int oneY) in Transform() argument 252 : mOrigX(origX), mOrigY(origY), mOneX(oneX), mOneY(oneY) { in Transform() 253 if (origX == oneX || origY == oneY) { in Transform() 262 if (oneX > origX && oneY > origY) { in Transform() 269 mOutputHeight = abs(oneY - origY); in Transform() 270 } else if (oneX < origX && oneY > origY) { in Transform() 276 mOutputWidth = abs(oneY - origY); in Transform() 278 } else if (oneX > origX && oneY < origY) { in Transform() 284 mOutputWidth = abs(oneY - origY); in Transform() [all …]
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
D | PhotoViewCallbacks.java | 48 public boolean onInterceptMoveLeft(float origX, float origY); in onInterceptMoveLeft() argument 57 public boolean onInterceptMoveRight(float origX, float origY); in onInterceptMoveRight() argument
|
D | PhotoViewPager.java | 53 public InterceptType onTouchIntercept(float origX, float origY); in onTouchIntercept() argument
|
D | PhotoViewController.java | 718 public InterceptType onTouchIntercept(float origX, float origY) { in onTouchIntercept() argument 724 interceptLeft = listener.onInterceptMoveLeft(origX, origY); in onTouchIntercept() 727 interceptRight = listener.onInterceptMoveRight(origX, origY); in onTouchIntercept()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/ |
D | PhotoViewFragment.java | 73 public boolean interceptMoveLeft(float origX, float origY); in interceptMoveLeft() argument 82 public boolean interceptMoveRight(float origX, float origY); in interceptMoveRight() argument 482 public boolean onInterceptMoveLeft(float origX, float origY) { in onInterceptMoveLeft() argument 488 return (mPhotoView != null && mPhotoView.interceptMoveLeft(origX, origY)); in onInterceptMoveLeft() 492 public boolean onInterceptMoveRight(float origX, float origY) { in onInterceptMoveRight() argument 498 return (mPhotoView != null && mPhotoView.interceptMoveRight(origX, origY)); in onInterceptMoveRight()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
D | PhotoView.java | 403 public boolean interceptMoveLeft(float origX, float origY) { in interceptMoveLeft() argument 436 public boolean interceptMoveRight(float origX, float origY) { in interceptMoveRight() argument
|