OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:roundedTrueCrop
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java
574
Rect
roundedTrueCrop
= new Rect();
583
mCropBounds.roundOut(
roundedTrueCrop
);
584
mCropBounds = new RectF(
roundedTrueCrop
);
603
mCropBounds.roundOut(
roundedTrueCrop
);
605
if (
roundedTrueCrop
.width() <= 0 ||
roundedTrueCrop
.height() <= 0) {
612
int scaleDownSampleSize = Math.max(1, Math.min(
roundedTrueCrop
.width() / mOutWidth,
613
roundedTrueCrop
.height() / mOutHeight));
640
crop = decoder.decodeRegion(
roundedTrueCrop
, options);
663
mCropBounds.roundOut(
roundedTrueCrop
);
[
all
...]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperCropActivity.java
572
Rect
roundedTrueCrop
= new Rect();
581
mCropBounds.roundOut(
roundedTrueCrop
);
582
mCropBounds = new RectF(
roundedTrueCrop
);
601
mCropBounds.roundOut(
roundedTrueCrop
);
603
if (
roundedTrueCrop
.width() <= 0 ||
roundedTrueCrop
.height() <= 0) {
610
int scaleDownSampleSize = Math.max(1, Math.min(
roundedTrueCrop
.width() / mOutWidth,
611
roundedTrueCrop
.height() / mOutHeight));
638
crop = decoder.decodeRegion(
roundedTrueCrop
, options);
661
mCropBounds.roundOut(
roundedTrueCrop
);
[
all
...]
/frameworks/base/core/java/android/app/
WallpaperManager.java
463
Rect
roundedTrueCrop
= new Rect();
464
cropRectF.roundOut(
roundedTrueCrop
);
466
if (
roundedTrueCrop
.width() <= 0 ||
roundedTrueCrop
.height() <= 0) {
472
int scaleDownSampleSize = Math.min(
roundedTrueCrop
.width() / outWidth,
473
roundedTrueCrop
.height() / outHeight);
490
crop = decoder.decodeRegion(
roundedTrueCrop
, options);
507
crop = Bitmap.createBitmap(fullSize,
roundedTrueCrop
.left,
508
roundedTrueCrop
.top,
roundedTrueCrop
.width()
[
all
...]
/packages/apps/Camera2/src/com/android/camera/crop/
CropActivity.java
468
Rect
roundedTrueCrop
= new Rect();
469
trueCrop.roundOut(
roundedTrueCrop
);
471
if (
roundedTrueCrop
.width() <= 0 ||
roundedTrueCrop
.height() <= 0) {
490
crop = decoder.decodeRegion(
roundedTrueCrop
, options);
502
crop = Bitmap.createBitmap(fullSize,
roundedTrueCrop
.left,
503
roundedTrueCrop
.top,
roundedTrueCrop
.width(),
504
roundedTrueCrop
.height());
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java
471
Rect
roundedTrueCrop
= new Rect();
472
trueCrop.roundOut(
roundedTrueCrop
);
474
if (
roundedTrueCrop
.width() <= 0 ||
roundedTrueCrop
.height() <= 0) {
493
crop = decoder.decodeRegion(
roundedTrueCrop
, options);
505
crop = Bitmap.createBitmap(fullSize,
roundedTrueCrop
.left,
506
roundedTrueCrop
.top,
roundedTrueCrop
.width(),
507
roundedTrueCrop
.height());
Completed in 87 milliseconds