HomeSort by relevance Sort by last modified time
    Searched refs:cachedBitmap (Results 1 - 7 of 7) sorted by null

  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BackgroundHelper.java 237 Bitmap cachedBitmap = BitmapCache.getInstance().getCache(imageToken);
238 if (cachedBitmap != null) {
239 mBackgroundManager.setBitmap(cachedBitmap);
277 Bitmap cachedBitmap = BitmapCache.getInstance().getCache(imageToken);
278 if (cachedBitmap != null) {
280 callback.onBitmapLoaded(cachedBitmap);
  /external/volley/src/main/java/com/android/volley/toolbox/
ImageLoader.java 216 Bitmap cachedBitmap = mCache.getBitmap(cacheKey);
217 if (cachedBitmap != null) {
219 ImageContainer container = new ImageContainer(cachedBitmap, requestUrl, null, null);
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java     [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/
ContactPhotoManagerImpl.java 523 Bitmap cachedBitmap = holder.bitmapRef == null ? null : holder.bitmapRef.get();
524 if (cachedBitmap == null) {
541 layers[1] = getDrawableForBitmap(mContext.getResources(), cachedBitmap, request);
546 view.setImageDrawable(getDrawableForBitmap(mContext.getResources(), cachedBitmap, request));
551 if (cachedBitmap.getByteCount() < mBitmapCache.maxSize() / 6) {
552 mBitmapCache.put(request.getKey(), cachedBitmap);
    [all...]
  /external/skia/tests/
ImageTest.cpp 421 SkBitmap cachedBitmap;
422 REPORTER_ASSERT(reporter, !SkBitmapCache::Find(desc, &cachedBitmap));
427 SkBitmap cachedBitmap;
428 if (SkBitmapCache::Find(desc, &cachedBitmap)) {
429 REPORTER_ASSERT(reporter, cachedBitmap.getGenerationID() == uniqueID);
430 REPORTER_ASSERT(reporter, cachedBitmap.isImmutable());
431 REPORTER_ASSERT(reporter, cachedBitmap.getPixels());
435 SkDebugf("SkImage_Gpu2Cpu : cachedBitmap was already purged\n");
441 SkBitmap cachedBitmap;
442 REPORTER_ASSERT(reporter, !SkBitmapCache::Find(desc, &cachedBitmap));
    [all...]
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.10/
library-1.0.10.jar 
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.18/
library-1.0.18.jar 

Completed in 3045 milliseconds