Searched defs:BitmapCache (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/bitmap/src/com/android/bitmap/
H A DBitmapCache.java19 public interface BitmapCache extends PooledCache<RequestKey, ReusableBitmap> { interface in inherits:PooledCache
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/graphics/
H A DImageLoader.java34 private static final BitmapCache CACHE = new BitmapCache(
89 private static class BitmapCache extends LruCache<Long, Bitmap> { class in class:ImageLoader
90 BitmapCache(int maxSize) { method in class:ImageLoader.BitmapCache
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/graphics/
H A DImageLoader.java34 private static final BitmapCache CACHE = new BitmapCache(
89 private static class BitmapCache extends LruCache<Long, Bitmap> { class in class:ImageLoader
90 BitmapCache(int maxSize) { method in class:ImageLoader.BitmapCache
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DBackgroundHelper.java33 * 2. Using a BitmapCache to cache loaded bitmaps.
46 * An very simple example of BitmapCache.
48 public static class BitmapCache { class in class:BackgroundHelper
52 // Singleton BitmapCache shared by multiple activities/backgroundHelper.
53 static BitmapCache sInstance = new BitmapCache();
55 private BitmapCache() { method in class:BackgroundHelper.BitmapCache
79 * Add singleton of BitmapCache shared across activities.
81 public static BitmapCache getInstance() {
140 BitmapCache
[all...]
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DBackgroundHelper.java33 * 2. Using a BitmapCache to cache loaded bitmaps.
46 * An very simple example of BitmapCache.
48 public static class BitmapCache { class in class:BackgroundHelper
52 // Singleton BitmapCache shared by multiple activities/backgroundHelper.
53 static BitmapCache sInstance = new BitmapCache();
55 private BitmapCache() { method in class:BackgroundHelper.BitmapCache
79 * Add singleton of BitmapCache shared across activities.
81 public static BitmapCache getInstance() {
140 BitmapCache
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java128 private BitmapCache mBitmapCache;
307 public void setBitmapCache(BitmapCache bitmapCache) {
411 mBitmapCache = new BitmapCache();
1104 private static class BitmapCache { class in class:RemoteViews
1107 public BitmapCache() { method in class:RemoteViews.BitmapCache
1111 public BitmapCache(Parcel source) { method in class:RemoteViews.BitmapCache
1149 public void assimilate(BitmapCache bitmapCache) {
1167 protected BitmapCache clone() {
1168 BitmapCache bitmapCache = new BitmapCache();
[all...]

Completed in 4578 milliseconds