Searched refs:ImageCache (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DImageCache.java38 * ImageCache - A fixed pixel count sized cache of Images keyed by arbitrary set of arguments. All images are held with
42 final class ImageCache { class
57 private static final RecyclableSingleton<ImageCache> instance = new RecyclableSingleton<ImageCache>() {
59 protected ImageCache getInstance() {
60 return new ImageCache();
63 static ImageCache getInstance() {
67 ImageCache(final int maxPixelCount) { method in class:ImageCache
71 ImageCache() { method in class:ImageCache
H A DAquaPainter.java155 final ImageCache cache = ImageCache.getInstance();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DImageCache.java39 * ImageCache - A fixed pixel count sized cache of Images keyed by arbitrary set of arguments. All images are held with
45 class ImageCache { class
60 private static final ImageCache instance = new ImageCache();
64 static ImageCache getInstance() {
68 public ImageCache() { method in class:ImageCache
73 public ImageCache(int maxPixelCount, int maxSingleImagePixelSize) { method in class:ImageCache
H A DAbstractRegionPainter.java151 !ImageCache.getInstance().isImageCachable(w, h) ||
674 ImageCache imageCache = ImageCache.getInstance();
H A DNimbusLookAndFeel.java122 ImageCache.getInstance().flush();
/openjdk7/jdk/src/share/classes/sun/swing/
H A DCachedPainter.java55 // CacheMap maps from class to ImageCache.
56 private static final Map<Object,ImageCache> cacheMap =
57 new HashMap<Object,ImageCache>();
60 private static ImageCache getCache(Object key) {
62 ImageCache cache = cacheMap.get(key);
64 cache = new ImageCache(1);
120 ImageCache cache = getCache(key);
H A DImageCache.java36 public class ImageCache { class
42 public ImageCache(int maxCount) { method in class:ImageCache
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKEngine.java42 import sun.swing.ImageCache;
116 private ImageCache cache = new ImageCache(CACHE_SIZE);

Completed in 267 milliseconds