Searched refs:tmpOut (Results 1 – 6 of 6) sorted by relevance
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/ |
D | CropAndSetWallpaperTask.java | 80 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in cropBitmap() local 81 if (crop.compress(CompressFormat.JPEG, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in cropBitmap() 84 byte[] outByteArray = tmpOut.toByteArray(); in cropBitmap()
|
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/ |
D | ImageUtils.java | 59 Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap); in blur() local 62 theIntrinsic.forEach(tmpOut); in blur() 63 tmpOut.copyTo(outputBitmap); in blur()
|
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/ |
D | DefaultWallpaperInfo.java | 92 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in setDefaultOnLock() local 93 if (defaultWallpaper.compress(Bitmap.CompressFormat.PNG, 100, tmpOut)) { in setDefaultOnLock() 94 byte[] outByteArray = tmpOut.toByteArray(); in setDefaultOnLock()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
D | CropActivity.java | 557 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(2048); in doInBackground() local 558 if (crop.compress(cf, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in doInBackground() 569 mOutStream.write(tmpOut.toByteArray()); in doInBackground() 587 mWPManager.setStream(new ByteArrayInputStream(tmpOut in doInBackground()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
D | ImagePreviewFragment.java | 356 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(); in recalculateColors() 358 if (cropped.compress(Bitmap.CompressFormat.PNG, 100, tmpOut)) { in recalculateColors() 359 byte[] outByteArray = tmpOut.toByteArray(); in recalculateColors()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/module/ |
D | DefaultWallpaperPersister.java | 486 ByteArrayOutputStream tmpOut = new ByteArrayOutputStream(); in setBitmapToWallpaperManagerCompat() local 487 if (wallpaperBitmap.compress(CompressFormat.PNG, DEFAULT_COMPRESS_QUALITY, tmpOut)) { in setBitmapToWallpaperManagerCompat() 489 byte[] outByteArray = tmpOut.toByteArray(); in setBitmapToWallpaperManagerCompat()
|