Searched defs:cropTop (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DBorderCropDrawable.java31 boolean cropTop, boolean cropRight, boolean cropBottom) {
42 if (cropTop) {
30 BorderCropDrawable(Drawable child, boolean cropLeft, boolean cropTop, boolean cropRight, boolean cropBottom) argument
/packages/apps/Camera2/jni/
H A Djpegutilnative.cpp38 * 1. The image is cropped to the rectangle from (cropLeft, cropTop) to
84 jint cropLeft, jint cropTop, jint cropRight, jint cropBottom,
99 cropLeft, cropTop, cropRight, cropBottom, //
69 Java_com_android_camera_util_JpegUtilNative_compressJpegFromYUV420pNative( JNIEnv* env, jclass clazz, jint width, jint height, jobject yBuf, jint yPStride, jint yRStride, jobject cbBuf, jint cbPStride, jint cbRStride, jobject crBuf, jint crPStride, jint crRStride, jobject outBuf, jint outBufCapacity, jint quality, jint cropLeft, jint cropTop, jint cropRight, jint cropBottom, jint rot90) argument
H A Djpegutil.cpp95 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
103 int cropYLow = min(cropTop, cropBottom);
105 int cropYHigh = max(cropTop, cropBottom);
319 int cropLeft, int cropTop, int cropRight, int cropBottom,
326 finalHeight = cropBottom - cropTop;
331 finalWidth = cropBottom - cropTop;
334 finalWidth = cropBottom - cropTop;
352 cropLeft, cropTop, cropRight, cropBottom, rot90);
355 cropLeft / 2, cropTop / 2, cropRight / 2, cropBottom / 2, rot90);
94 ForCropFollowedByRotation( int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
305 Compress( int width, int height, unsigned char* yBuf, int yPStride, int yRStride, unsigned char* cbBuf, int cbPStride, int cbRStride, unsigned char* crBuf, int crPStride, int crRStride, unsigned char* outBuf, size_t outBufCapacity, int quality, int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
/packages/apps/Camera2/src/com/android/camera/util/
H A DJpegUtilNative.java56 * <li>The image is cropped to the rectangle from (cropLeft, cropTop) to
87 * @param cropTop top-edge of the bounds of the image to crop to before
102 int cropLeft, int cropTop, int cropRight, int cropBottom,
145 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
157 cropLeft, cropTop, cropRight, cropBottom, rot90));
160 quality, cropLeft, cropTop, cropRight, cropBottom, rot90);
251 int cropTop = crop.top;
252 cropTop = Math.max(cropTop, 0);
253 cropTop
95 compressJpegFromYUV420pNative( int width, int height, Object yBuf, int yPStride, int yRStride, Object cbBuf, int cbPStride, int cbRStride, Object crBuf, int crPStride, int crRStride, Object outBuf, int outBufCapacity, int quality, int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
139 compressJpegFromYUV420p( int width, int height, ByteBuffer yBuf, int yPStride, int yRStride, ByteBuffer cbBuf, int cbPStride, int cbRStride, ByteBuffer crBuf, int crPStride, int crRStride, ByteBuffer outBuf, int quality, int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) argument
[all...]

Completed in 57 milliseconds