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

  /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...]
browser_theme_pack.cc 501 ImageCache::const_iterator image_iter = prepared_images_.find(prs_id);
845 ImageCache* raw_bitmaps) {
887 void BrowserThemePack::GenerateFrameImages(ImageCache* bitmaps) const {
892 ImageCache temp_output;
944 ImageCache* processed_bitmaps) const {
964 void BrowserThemePack::GenerateTabBackgroundImages(ImageCache* bitmaps) const {
965 ImageCache temp_output;
972 ImageCache::const_iterator it = bitmaps->find(prs_base_id);
    [all...]
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageCache.java 33 public class ImageCache {
34 private static final String TAG = "ImageCache";
55 * Creating a new ImageCache object using the specified parameters.
60 public ImageCache(Context context, ImageCacheParams cacheParams) {
65 * Creating a new ImageCache object using the default parameters.
70 public ImageCache(Context context, String uniqueName) {
75 * Find and return an existing ImageCache stored in a {@link RetainFragment}, if not found a new
80 * @return An existing retained ImageCache object or a new one if one did not exist.
82 public static ImageCache findOrCreateCache(
88 * Find and return an existing ImageCache stored in a {@link RetainFragment}, if not found a ne
    [all...]
ImageWorker.java 44 private ImageCache mImageCache;
59 * cache will be used if an {@link ImageCache} has been set using
60 * {@link ImageWorker#setImageCache(ImageCache)}. If the image is found in the memory cache, it
89 * cache will be used if an {@link ImageCache} has been set using
90 * {@link ImageWorker#setImageCache(ImageCache)}. If the image is found in the memory cache, it
125 * Set the {@link ImageCache} object to use with this ImageWorker.
129 public void setImageCache(ImageCache cacheCallback) {
133 public ImageCache getImageCache() {
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/ui/
ImageGridFragment.java 44 import com.example.android.bitmapfun.util.ImageCache;
45 import com.example.android.bitmapfun.util.ImageCache.ImageCacheParams;
52 * implementation with the key addition being the ImageWorker class w/ImageCache to load children
96 mImageWorker.setImageCache(ImageCache.findOrCreateCache(getActivity(), cacheParams));
164 final ImageCache cache = mImageWorker.getImageCache();
ImageDetailActivity.java 41 import com.example.android.bitmapfun.util.ImageCache;
72 mImageWorker.setImageCache(ImageCache.findOrCreateCache(this, IMAGE_CACHE_DIR));
129 final ImageCache cache = mImageWorker.getImageCache();
  /external/chromium/chrome/browser/ui/gtk/
gtk_theme_service.h 148 typedef std::map<int, SkBitmap*> ImageCache;
292 mutable ImageCache gtk_images_;
gtk_theme_service.cc 298 ImageCache::const_iterator it = gtk_images_.find(id);
    [all...]
  /external/chromium/chrome/common/extensions/
extension.h 649 typedef std::map<ImageCacheKey, SkBitmap> ImageCache;
    [all...]
extension.cc     [all...]

Completed in 293 milliseconds