Home
last modified time | relevance | path

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

/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DImageCache.java83 private Set<SoftReference<Bitmap>> mReusableBitmaps; field in ImageCache
148 mReusableBitmaps = in init()
170 mReusableBitmaps.add(new SoftReference<Bitmap>(oldValue.getBitmap())); in init()
366 if (mReusableBitmaps != null && !mReusableBitmaps.isEmpty()) { in getBitmapFromReusableSet()
367 synchronized (mReusableBitmaps) { in getBitmapFromReusableSet()
368 final Iterator<SoftReference<Bitmap>> iterator = mReusableBitmaps.iterator(); in getBitmapFromReusableSet()