/packages/apps/UnifiedEmail/src/com/android/bitmap/ |
BitmapCache.java | 19 public interface BitmapCache extends PooledCache<DecodeTask.Request, ReusableBitmap> {
|
AltBitmapCache.java | 29 implements BitmapCache {
|
DecodeTask.java | 37 private final BitmapCache mCache; 51 * When {@link DecodeTask} is used in conjunction with a {@link BitmapCache}, objects of this 77 BitmapCache cache) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
Buffer.java | 24 import com.android.gallery3d.filtershow.cache.BitmapCache; 37 BitmapCache cache = MasterImage.getImage().getBitmapCache(); 38 mBitmap = cache.getBitmapCopy(bitmap, BitmapCache.PREVIEW_CACHE); 91 BitmapCache cache = MasterImage.getImage().getBitmapCache();
|
FilterEnvironment.java | 24 import com.android.gallery3d.filtershow.cache.BitmapCache; 41 private BitmapCache mBitmapCache; 58 public void setBitmapCache(BitmapCache cache) { 171 public BitmapCache getBimapCache() {
|
CacheProcessing.java | 22 import com.android.gallery3d.filtershow.cache.BitmapCache; 136 return environment.getBitmapCopy(originalBitmap, BitmapCache.PREVIEW_CACHE_NO_FILTERS); 194 BitmapCache.PREVIEW_CACHE_NO_ROOT); 211 BitmapCache.PREVIEW_CACHE_NO_ROOT); 229 cacheBitmap = environment.getBitmapCopy(cacheBitmap, BitmapCache.PREVIEW_CACHE); 259 return environment.getBitmapCopy(cacheBitmap, BitmapCache.PREVIEW_CACHE_NO_APPLY);
|
CachingPipeline.java | 31 import com.android.gallery3d.filtershow.cache.BitmapCache; 226 bitmap = mEnvironment.getBitmapCopy(bitmap, BitmapCache.HIGHRES); 251 bitmap = mEnvironment.getBitmapCopy(bitmap, BitmapCache.GEOMETRY); 273 bitmap = mEnvironment.getBitmapCopy(bitmap, BitmapCache.FILTERS); 357 iconBounds.height(), BitmapCache.ICON); 369 bitmap = mEnvironment.getBitmapCopy(source, BitmapCache.ICON);
|
RenderingRequest.java | 24 import com.android.gallery3d.filtershow.cache.BitmapCache; 75 source.getWidth(), source.getHeight(), BitmapCache.RENDERING_REQUEST);
|
ImagePreset.java | 27 import com.android.gallery3d.filtershow.cache.BitmapCache;
|
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
AttachmentGridDrawable.java | 10 import com.android.bitmap.BitmapCache; 24 private BitmapCache mCache; 56 public void setBitmapCache(BitmapCache cache) {
|
AttachmentDrawable.java | 19 import com.android.bitmap.BitmapCache; 49 private final BitmapCache mCache; 88 public AttachmentDrawable(final Resources res, final BitmapCache cache,
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterTinyPlanet.java | 26 import com.android.gallery3d.filtershow.cache.BitmapCache; 97 outputSize, BitmapCache.TINY_PLANET);
|
/frameworks/base/core/java/android/widget/ |
RemoteViews.java | 107 private BitmapCache mBitmapCache; 258 public void setBitmapCache(BitmapCache bitmapCache) { 320 mBitmapCache = new BitmapCache(); [all...] |
/external/chromium/chrome/browser/ui/gtk/tabs/ |
tab_renderer_gtk.h | 253 BitmapCache; 332 BitmapCache cached_bitmaps_;
|
tab_renderer_gtk.cc | 279 for (BitmapCache::iterator it = cached_bitmaps_.begin(); 561 for (BitmapCache::iterator it = cached_bitmaps_.begin(); 770 BitmapCache::iterator it = cached_bitmaps_.find(std::make_pair(mask, [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
MasterImage.java | 31 import com.android.gallery3d.filtershow.cache.BitmapCache; 117 private BitmapCache mBitmapCache = new BitmapCache(); 422 mPreviousImage = mBitmapCache.getBitmapCopy(getFilteredImage(), BitmapCache.NEW_LOOK); 829 public BitmapCache getBitmapCache() {
|
GeometryMathUtils.java | 27 import com.android.gallery3d.filtershow.cache.BitmapCache; 319 BitmapCache bitmapCache = MasterImage.getImage().getBitmapCache(); 320 Bitmap temp = bitmapCache.getBitmap(frame.width(), 321 frame.height(), BitmapCache.UTIL_GEOMETRY); 394 BitmapCache cache = MasterImage.getImage().getBitmapCache();
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
ImageLoader.java | 254 public static Bitmap loadRegionBitmap(Context context, BitmapCache cache, 277 imageBounds.height(), BitmapCache.REGION); 416 BitmapCache cache,
|
BitmapCache.java | 29 public class BitmapCache { 30 private static final String LOGTAG = "BitmapCache";
|
/packages/apps/Gallery/src/com/android/camera/ |
ViewImage.java | 131 private BitmapCache mCache; 571 mCache = new BitmapCache(3); [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
WidgetPreviewLoader.java | 83 class BitmapCache extends SoftReferenceThreadLocal<Bitmap> { 117 private BitmapCache mCachedShortcutPreviewBitmap = new BitmapCache();
|
AppsCustomizePagedView.java | 231 BitmapCache mCachedShortcutPreviewBitmap = new BitmapCache(); [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
WidgetPreviewLoader.java | 82 class BitmapCache extends SoftReferenceThreadLocal<Bitmap> { 115 private BitmapCache mCachedShortcutPreviewBitmap = new BitmapCache();
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
AnimatedAdapter.java | 39 import com.android.bitmap.BitmapCache; 94 private final BitmapCache mBitmapCache; [all...] |
/packages/apps/Settings/src/com/android/settings/ |
KeyguardAppWidgetPickActivity.java | 280 class BitmapCache extends WeakReferenceThreadLocal<Bitmap> {
|