Home
last modified time | relevance | path

Searched refs:fullImage (Results 1 – 3 of 3) sorted by relevance

/packages/apps/EmergencyInfo/src/com/android/emergency/preferences/
DEditUserPhotoController.java329 Bitmap fullImage = null; in onPhotoCropped() local
333 fullImage = imageStream != null ? BitmapFactory.decodeStream(imageStream) in onPhotoCropped()
339 if (fullImage != null) { in onPhotoCropped()
343 final int squareSize = Math.min(fullImage.getWidth(), in onPhotoCropped()
344 fullImage.getHeight()); in onPhotoCropped()
345 final int left = (fullImage.getWidth() - squareSize) / 2; in onPhotoCropped()
346 final int top = (fullImage.getHeight() - squareSize) / 2; in onPhotoCropped()
351 canvas.drawBitmap(fullImage, rectSource, rectDest, paint); in onPhotoCropped()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DPhotoDataAdapter.java333 BitmapRegionDecoder fullImage = future.get(); in updateFullImage() local
334 if (fullImage != null) fullImage.recycle(); in updateFullImage()
339 entry.fullImage = future.get(); in updateFullImage()
340 if (entry.fullImage != null) { in updateFullImage()
612 BitmapRegionDecoder fullImage = entry.fullImage; in updateTileProvider() local
614 if (fullImage != null) { in updateTileProvider()
616 fullImage.getWidth(), fullImage.getHeight()); in updateTileProvider()
617 mTileProvider.setRegionDecoder(fullImage); in updateTileProvider()
822 entry.fullImage = null; in updateImageCache()
896 public BitmapRegionDecoder fullImage; field in PhotoDataAdapter.ImageEntry
/packages/services/Car/tests/BugReportApp/src/com/android/car/bugreport/
DScreenshotUtils.java112 Bitmap fullImage = mergeImagesVertically(images); in takeScreenshot() local
114 storeImage(fullImage, getScreenshotFilename()); in takeScreenshot()