HomeSort by relevance Sort by last modified time
    Searched refs:cropLeft (Results 1 - 21 of 21) sorted by null

  /packages/apps/Camera2/src/com/android/camera/util/
AspectRatio.java 180 int cropLeft = 0;
182 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
186 int cropLeft = (area.width() - cropWidth) / 2;
187 int cropRight = cropLeft + cropWidth;
190 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
JpegUtilNative.java 56 * <li>The image is cropped to the rectangle from (cropLeft, cropTop) to
85 * @param cropLeft left-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);
243 int cropLeft = crop.left;
244 cropLeft = Math.max(cropLeft, 0);
245 cropLeft = Math.min(cropLeft, img.getWidth() - 1)
    [all...]
  /packages/apps/Camera2/jni/
jpegutil.cpp 95 int cropLeft, int cropTop, int cropRight, int cropBottom, int rot90) {
102 int cropXLow = min(cropLeft, cropRight);
104 int cropXHigh = max(cropLeft, cropRight);
319 int cropLeft, int cropTop, int cropRight, int cropBottom,
325 finalWidth = cropRight - cropLeft;
332 finalHeight = cropRight - cropLeft;
335 finalHeight = cropRight - cropLeft;
352 cropLeft, cropTop, cropRight, cropBottom, rot90);
355 cropLeft / 2, cropTop / 2, cropRight / 2, cropBottom / 2, rot90);
jpegutilnative.cpp 38 * 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, //
jpegutil.h 51 static Transform ForCropFollowedByRotation(int cropLeft, int cropTop,
167 int cropLeft, int cropTop, int cropRight, int cropBottom,
  /packages/apps/Launcher3/src/com/android/launcher3/
BorderCropDrawable.java 30 BorderCropDrawable(Drawable child, boolean cropLeft,
38 if (cropLeft) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 209 int cropLeft = 0;
217 cropLeft = (cropWidth - cropHeight) / 2;
224 if (scaleFactor < 1.0f || cropLeft != 0 || cropTop != 0 || originalHasAlpha) {
238 final Rect src = new Rect(cropLeft, cropTop,
239 cropLeft + cropWidth, cropTop + cropHeight);
  /frameworks/av/include/media/stagefright/
ColorConverter.h 51 size_t cropLeft, size_t cropTop,
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 124 float cropLeft = -edges.left / scale;
126 float cropRight = cropLeft + getWidth() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 124 float cropLeft = -edges.left / scale;
126 float cropRight = cropLeft + getWidth() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 213 int32_t cropLeft;
VideoDecoderVP8.cpp 82 mVideoFormatInfo.cropLeft = data->codec_data->crop_left;
VideoDecoderBase.cpp     [all...]
VideoDecoderAVC.cpp 760 mVideoFormatInfo.cropLeft = data->codec_data->crop_left;
    [all...]
  /frameworks/av/media/libstagefright/
Utils.cpp 135 int32_t cropLeft, cropTop, cropRight, cropBottom;
137 &cropLeft,
141 msg->setRect("crop", cropLeft, cropTop, cropRight, cropBottom);
590 int32_t cropLeft, cropTop, cropRight, cropBottom;
592 &cropLeft,
596 meta->setRect(kKeyCropRect, cropLeft, cropTop, cropRight, cropBottom);
AwesomePlayer.cpp     [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /frameworks/av/media/libstagefright/colorconversion/
ColorConverter.cpp 60 size_t cropLeft, size_t cropTop,
65 mCropLeft(cropLeft),
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 759 final int cropLeft = (layoutWidth - mCropSize) / 2;
761 final int cropRight = cropLeft + mCropSize;
766 mCropRect.set(cropLeft, cropTop, cropRight, cropBottom);
    [all...]
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderBase.cpp 701 uint32_t widthCropped = formatInfo->width - formatInfo->cropLeft - formatInfo->cropRight;
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]

Completed in 806 milliseconds