HomeSort by relevance Sort by last modified time
    Searched defs:cropLeft (Results 1 - 10 of 10) 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);
  /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/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...]
  /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;
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp     [all...]
  /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...]

Completed in 463 milliseconds