Home
last modified time | relevance | path

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

/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/
DCropAndSetWallpaperTask.java80 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/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
DDefaultWallpaperInfo.java92 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/
DCropActivity.java557 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()