/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
D | GeometryMathUtils.java | 429 private static Matrix getFullGeometryMatrix(GeometryHolder holder, int bitmapWidth, in getFullGeometryMatrix() argument 431 float centerX = bitmapWidth / 2f; in getFullGeometryMatrix() 440 public static Matrix getFullGeometryToScreenMatrix(GeometryHolder holder, int bitmapWidth, in getFullGeometryToScreenMatrix() argument 443 int bw = bitmapWidth; in getFullGeometryToScreenMatrix() 445 bh = bitmapWidth; in getFullGeometryToScreenMatrix() 450 float s = Math.min(viewWidth / (float) bitmapWidth, viewHeight / (float) bitmapHeight); in getFullGeometryToScreenMatrix() 451 Matrix m = getFullGeometryMatrix(holder, bitmapWidth, bitmapHeight); in getFullGeometryToScreenMatrix() 457 public static RectF getTrueCropRect(GeometryHolder holder, int bitmapWidth, int bitmapHeight) { in getTrueCropRect() argument 459 FilterCropRepresentation.findScaledCrop(r, bitmapWidth, bitmapHeight); in getTrueCropRect() 462 Matrix m1 = getFullGeometryMatrix(holder, bitmapWidth, bitmapHeight); in getTrueCropRect() [all …]
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
D | FilterCropRepresentation.java | 96 public static void findScaledCrop(RectF crop, int bitmapWidth, int bitmapHeight) { in findScaledCrop() argument 97 crop.left *= bitmapWidth; in findScaledCrop() 99 crop.right *= bitmapWidth; in findScaledCrop() 107 public static void findNormalizedCrop(RectF crop, int bitmapWidth, int bitmapHeight) { in findNormalizedCrop() argument 108 crop.left /= bitmapWidth; in findNormalizedCrop() 110 crop.right /= bitmapWidth; in findNormalizedCrop()
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/ |
D | ImageRequestTest.java | 71 final int bitmapWidth = imageResource.getBitmap().getWidth(); in testLoadImageUnspecifiedSize() local 73 assertEquals(options.getValue().outWidth, bitmapWidth); in testLoadImageUnspecifiedSize() local 101 final int bitmapWidth = imageResource.getBitmap().getWidth(); in testLoadImageWithDownsampling() local 103 assertTrue(bitmapWidth >= DOWNSAMPLE_IMAGE_SIZE && in testLoadImageWithDownsampling() 105 (bitmapWidth <= DOWNSAMPLE_IMAGE_SIZE * 4 || in testLoadImageWithDownsampling()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | DecodedImageResource.java | 194 final int bitmapWidth = bitmap.getWidth(); in loadMediaBlocking() local 201 if (bitmapWidth > 0 && bitmapHeight > 0 && in loadMediaBlocking() 206 (float) descriptor.desiredWidth / bitmapWidth, in loadMediaBlocking() 208 final int targetWidth = (int) (bitmapWidth * targetScale); in loadMediaBlocking() 212 targetWidth != bitmapWidth && targetHeight != bitmapHeight) { in loadMediaBlocking()
|
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/ |
D | LivePreviewWidgetCell.java | 79 final int bitmapWidth, bitmapHeight; in generateFromRemoteViews() local 83 bitmapWidth = previewSize; in generateFromRemoteViews() 87 bitmapWidth = viewWidth; in generateFromRemoteViews() 91 Bitmap preview = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888); in generateFromRemoteViews()
|
/packages/apps/Launcher3/src/com/android/launcher3/widget/ |
D | WidgetImageView.java | 94 float bitmapWidth = mBitmap.getWidth(); in updateDstRectF() local 96 final float scale = bitmapWidth > myWidth ? myWidth / bitmapWidth : 1; in updateDstRectF() 97 float scaledWidth = bitmapWidth * scale; in updateDstRectF()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/asset/ |
D | Asset.java | 302 int bitmapWidth = mBitmap.getWidth(); in doInBackground() local 306 (float) bitmapWidth / measuredWidth, in doInBackground() 310 … mBitmap, Math.round(bitmapWidth / scale), Math.round(bitmapHeight / scale), true); in doInBackground()
|
/packages/apps/Camera2/src/com/android/camera/ |
D | MultiToggleImageButton.java | 404 int bitmapWidth = (width*2) + ((mParentSize - width)/2); in combine() local 406 bitmap = Bitmap.createBitmap(bitmapWidth, height, Bitmap.Config.ARGB_8888); in combine()
|