Home
last modified time | relevance | path

Searched refs:cropRight (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/util/
DJpegUtilNative.java102 int cropLeft, int cropTop, int cropRight, int cropBottom, in compressJpegFromYUV420pNative() argument
145 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) { in compressJpegFromYUV420p() argument
157 cropLeft, cropTop, cropRight, cropBottom, rot90)); in compressJpegFromYUV420p()
160 quality, cropLeft, cropTop, cropRight, cropBottom, rot90); in compressJpegFromYUV420p()
247 int cropRight = crop.right; in compressJpegFromYUV420Image()
248 cropRight = Math.max(cropRight, 0); in compressJpegFromYUV420Image()
249 cropRight = Math.min(cropRight, img.getWidth()); in compressJpegFromYUV420Image()
268 outBuf, quality, cropLeft, cropTop, cropRight, cropBot, in compressJpegFromYUV420Image()
DAspectRatio.java181 int cropRight = area.width(); in getLargestCenterCrop() local
182 return new Rect(cropLeft, cropTop, cropRight, cropBottom); in getLargestCenterCrop()
187 int cropRight = cropLeft + cropWidth; in getLargestCenterCrop() local
190 return new Rect(cropLeft, cropTop, cropRight, cropBottom); in getLargestCenterCrop()
/packages/apps/Camera2/jni/
Djpegutil.cpp95 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) { in ForCropFollowedByRotation() argument
99 cropRight -= 1; in ForCropFollowedByRotation()
102 int cropXLow = min(cropLeft, cropRight); in ForCropFollowedByRotation()
104 int cropXHigh = max(cropLeft, cropRight); in ForCropFollowedByRotation()
319 int cropLeft, int cropTop, int cropRight, int cropBottom, in Compress() argument
325 finalWidth = cropRight - cropLeft; in Compress()
332 finalHeight = cropRight - cropLeft; in Compress()
335 finalHeight = cropRight - cropLeft; in Compress()
352 cropLeft, cropTop, cropRight, cropBottom, rot90); in Compress()
355 cropLeft / 2, cropTop / 2, cropRight / 2, cropBottom / 2, rot90); in Compress()
Djpegutilnative.cpp84 jint cropLeft, jint cropTop, jint cropRight, jint cropBottom, in Java_com_android_camera_util_JpegUtilNative_compressJpegFromYUV420pNative() argument
99 cropLeft, cropTop, cropRight, cropBottom, // in Java_com_android_camera_util_JpegUtilNative_compressJpegFromYUV420pNative()
Djpegutil.h52 int cropRight, int cropBottom,
167 int cropLeft, int cropTop, int cropRight, int cropBottom,
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
DCropView.java126 float cropRight = cropLeft + getWidth() / scale; in getCrop() local
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom); in getCrop()