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

  /frameworks/volley/src/com/android/volley/toolbox/
ImageLoader.java 194 Bitmap cachedBitmap = mCache.getBitmap(cacheKey);
195 if (cachedBitmap != null) {
197 ImageContainer container = new ImageContainer(cachedBitmap, requestUrl, null, null);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 545 Bitmap cachedBitmap = holder.bitmapRef == null ? null : holder.bitmapRef.get();
546 if (cachedBitmap == null) {
550 cachedBitmap = holder.bitmap;
551 if (cachedBitmap == null) return false;
572 layers[1] = new BitmapDrawable(mContext.getResources(), cachedBitmap);
577 view.setImageBitmap(cachedBitmap);
582 if (cachedBitmap.getByteCount() < mBitmapCache.maxSize() / 6) {
583 mBitmapCache.put(request.getKey(), cachedBitmap);
    [all...]

Completed in 197 milliseconds