HomeSort by relevance Sort by last modified time
    Searched defs:ImageCache (Results 1 - 10 of 10) sorted by null

  /frameworks/volley/src/com/android/volley/toolbox/
ImageLoader.java 51 private final ImageCache mCache;
75 public interface ImageCache {
83 * @param imageCache The cache to use as an L1 cache.
85 public ImageLoader(RequestQueue queue, ImageCache imageCache) {
87 mCache = imageCache;
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageCache.java 32 public class ImageCache {
33 private static final String TAG = "ImageCache";
37 * Creating a new ImageCache object using the specified parameters.
41 private ImageCache(float memCacheSizePercent) {
46 * Find and return an existing ImageCache stored in a {@link RetainFragment}, if not found a new
51 * @return An existing retained ImageCache object or a new one if one did not exist
53 public static ImageCache getInstance(
59 // See if we already have an ImageCache stored in RetainFragment
60 ImageCache imageCache = (ImageCache) mRetainFragment.getObject()
    [all...]
  /external/chromium/chrome/browser/themes/
browser_theme_pack.h 93 typedef std::map<int, SkBitmap*> ImageCache;
139 ImageCache* raw_bitmaps);
143 void GenerateFrameImages(ImageCache* bitmaps) const;
148 ImageCache* processed_bitmaps) const;
152 void GenerateTabBackgroundImages(ImageCache* bitmaps) const;
156 void RepackImages(const ImageCache& images,
161 void MergeImageCaches(const ImageCache& source,
162 ImageCache* destination) const;
226 ImageCache prepared_images_;
229 mutable ImageCache loaded_images_
    [all...]
  /external/chromium_org/chrome/browser/themes/
browser_theme_pack.h 94 typedef std::map<int, gfx::Image> ImageCache;
150 ImageCache* image_cache);
155 void CreateImages(ImageCache* images) const;
160 void CropImages(ImageCache* images) const;
164 void CreateFrameImages(ImageCache* images) const;
169 ImageCache* processed_images) const;
173 void CreateTabBackgroundImages(ImageCache* images) const;
177 void RepackImages(const ImageCache& images,
182 void MergeImageCaches(const ImageCache& source,
183 ImageCache* destination) const
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_ui.h 58 typedef std::map<int, gfx::Image> ImageCache;
161 mutable ImageCache gtk_images_;
  /external/chromium/chrome/browser/ui/gtk/
gtk_theme_service.h 148 typedef std::map<int, SkBitmap*> ImageCache;
292 mutable ImageCache gtk_images_;
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_theme_service.h 163 typedef std::map<int, gfx::Image*> ImageCache;
303 mutable ImageCache gtk_images_;
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab.h 156 typedef std::list<ImageCacheEntry> ImageCache;
369 static ImageCache* image_cache_;
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/
ImageCache.java 53 * {@link ImageCache#getInstance(FragmentManager, ImageCacheParams)} to get an instance of this
57 public class ImageCache {
58 private static final String TAG = "ImageCache";
85 * Create a new ImageCache object using the specified parameters. This should not be
87 * {@link ImageCache#getInstance(FragmentManager, ImageCacheParams)} to fetch an ImageCache
92 private ImageCache(ImageCacheParams cacheParams) {
97 * Return an {@link ImageCache} instance. A {@link RetainFragment} is used to retain the
98 * ImageCache object across configuration changes such as a change in device orientation.
101 * @param cacheParams The cache parameters to use if the ImageCache needs instantiation
    [all...]
  /external/chromium/chrome/common/extensions/
extension.h 649 typedef std::map<ImageCacheKey, SkBitmap> ImageCache;
    [all...]

Completed in 595 milliseconds