Home
last modified time | relevance | path

Searched refs:roundedTrueCrop (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/
H A DInputStreamProvider.java68 Rect roundedTrueCrop = new Rect(); in readCroppedBitmap() local
82 cropBounds.roundOut(roundedTrueCrop); in readCroppedBitmap()
83 cropBounds.set(roundedTrueCrop); in readCroppedBitmap()
95 cropBounds.roundOut(roundedTrueCrop); in readCroppedBitmap()
96 if (roundedTrueCrop.width() <= 0 || roundedTrueCrop.height() <= 0) { in readCroppedBitmap()
152 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth(); in readCroppedBitmap()
156 roundedTrueCrop.offset(-(roundedTrueCrop.right - fullSize.getWidth()), 0); in readCroppedBitmap()
160 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight(); in readCroppedBitmap()
164 roundedTrueCrop.offset(0, -(roundedTrueCrop.bottom - fullSize.getHeight())); in readCroppedBitmap()
168 roundedTrueCrop.top, roundedTrueCrop.width(), in readCroppedBitmap()
[all …]
/aosp12/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DWallpaperCropActivity.java594 Rect roundedTrueCrop = new Rect();
603 mCropBounds.roundOut(roundedTrueCrop);
604 mCropBounds = new RectF(roundedTrueCrop);
623 mCropBounds.roundOut(roundedTrueCrop);
625 if (roundedTrueCrop.width() <= 0 || roundedTrueCrop.height() <= 0) {
688 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
693 Math.max(0, roundedTrueCrop.right - roundedTrueCrop.width());
699 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
704 Math.max(0, roundedTrueCrop.bottom - roundedTrueCrop.height());
710 roundedTrueCrop.top, roundedTrueCrop.width(),
[all …]
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropActivity.java471 Rect roundedTrueCrop = new Rect(); in doInBackground() local
472 trueCrop.roundOut(roundedTrueCrop); in doInBackground()
474 if (roundedTrueCrop.width() <= 0 || roundedTrueCrop.height() <= 0) { in doInBackground()
493 crop = decoder.decodeRegion(roundedTrueCrop, options); in doInBackground()
505 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left, in doInBackground()
506 roundedTrueCrop.top, roundedTrueCrop.width(), in doInBackground()
507 roundedTrueCrop.height()); in doInBackground()
/aosp12/frameworks/base/core/java/android/app/
H A DWallpaperManager.java911 Rect roundedTrueCrop = new Rect(); in getBuiltInDrawable() local
912 cropRectF.roundOut(roundedTrueCrop); in getBuiltInDrawable()
914 if (roundedTrueCrop.width() <= 0 || roundedTrueCrop.height() <= 0) { in getBuiltInDrawable()
920 int scaleDownSampleSize = Math.min(roundedTrueCrop.width() / outWidth, in getBuiltInDrawable()
921 roundedTrueCrop.height() / outHeight); in getBuiltInDrawable()
938 crop = decoder.decodeRegion(roundedTrueCrop, options); in getBuiltInDrawable()
953 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left, in getBuiltInDrawable()
954 roundedTrueCrop.top, roundedTrueCrop.width(), in getBuiltInDrawable()
955 roundedTrueCrop.height()); in getBuiltInDrawable()