HomeSort by relevance Sort by last modified time
    Searched defs:cropTop (Results 1 - 10 of 10) sorted by null

  /packages/apps/Camera2/src/com/android/camera/util/
AspectRatio.java 178 int cropTop = (area.height() - cropHeight) / 2;
179 int cropBottom = cropTop + cropHeight;
182 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
188 int cropTop = 0;
190 return new Rect(cropLeft, cropTop, cropRight, cropBottom);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoProcessor.java 210 int cropTop = 0;
214 cropTop = (cropHeight - cropWidth) / 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;
138 &cropTop,
141 msg->setRect("crop", cropLeft, cropTop, cropRight, cropBottom);
590 int32_t cropLeft, cropTop, cropRight, cropBottom;
593 &cropTop,
596 meta->setRect(kKeyCropRect, cropLeft, cropTop, cropRight, cropBottom);
AwesomePlayer.cpp     [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 125 float cropTop = -edges.top / scale;
127 float cropBottom = cropTop + getHeight() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 125 float cropTop = -edges.top / scale;
127 float cropBottom = cropTop + getHeight() / scale;
129 return new RectF(cropLeft, cropTop, cropRight, cropBottom);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 215 int32_t cropTop;
  /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 760 final int cropTop = (layoutHeight - mCropSize) / 2;
762 final int cropBottom = cropTop + mCropSize;
766 mCropRect.set(cropLeft, cropTop, cropRight, cropBottom);
    [all...]

Completed in 37 milliseconds