Home
last modified time | relevance | path

Searched refs:cacheBitmap (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
DCacheProcessing.java94 public Bitmap apply(FilterEnvironment environment, Bitmap cacheBitmap) { in apply() argument
96 Bitmap source = cacheBitmap; in apply()
109 Log.v(LOGTAG, "Apply geometry to bitmap " + cacheBitmap); in apply()
111 cacheBitmap = GeometryMathUtils.applyGeometryRepresentations(geometry, cacheBitmap); in apply()
116 + " to bitmap " + cacheBitmap); in apply()
118 cacheBitmap = environment.applyRepresentation(representation, cacheBitmap); in apply()
121 if (cacheBitmap != source) { in apply()
125 Log.v(LOGTAG, "Apply returns bitmap " + cacheBitmap); in apply()
127 return cacheBitmap; in apply()
177 Bitmap cacheBitmap = null; in process() local
[all …]
/packages/apps/ContactsCommon/src/com/android/contacts/common/
DContactPhotoManager.java559 public abstract void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes); in cacheBitmap() method in ContactPhotoManager
1182 private void cacheBitmap(Object key, byte[] bytes, boolean preloading, int requestedExtent) { in cacheBitmap() method in ContactPhotoManagerImpl
1219 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) { in cacheBitmap() method in ContactPhotoManagerImpl
1510 cacheBitmap(id, bytes, preloading, -1); in loadThumbnails()
1529 cacheBitmap(profileCursor.getLong(0), profileCursor.getBlob(1), in loadThumbnails()
1533 cacheBitmap(id, null, preloading, -1); in loadThumbnails()
1542 cacheBitmap(id, null, preloading, -1); in loadThumbnails()
1600 cacheBitmap(originalUri, baos.toByteArray(), false, in loadUriBasedPhotos()
1605 cacheBitmap(originalUri, null, false, uriRequest.getRequestedExtent()); in loadUriBasedPhotos()
1609 cacheBitmap(originalUri, null, false, uriRequest.getRequestedExtent()); in loadUriBasedPhotos()
/packages/apps/Launcher2/src/com/android/launcher2/
DDragController.java281 Bitmap cacheBitmap = v.getDrawingCache(); in getViewBitmap() local
282 if (cacheBitmap == null) { in getViewBitmap()
287 Bitmap bitmap = Bitmap.createBitmap(cacheBitmap); in getViewBitmap()
/packages/apps/Launcher3/src/com/android/launcher3/
DDragController.java294 Bitmap cacheBitmap = v.getDrawingCache(); in getViewBitmap() local
295 if (cacheBitmap == null) { in getViewBitmap()
300 Bitmap bitmap = Bitmap.createBitmap(cacheBitmap); in getViewBitmap()
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
DMockContactPhotoManager.java66 public void cacheBitmap(Uri photoUri, Bitmap bitmap, byte[] photoBytes) { in cacheBitmap() method in MockContactPhotoManager