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

/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphLayout.java210 private static final class SDCache { class in class:GlyphLayout
220 private SDCache(Font font, FontRenderContext frc) { method in class:GlyphLayout.SDCache
272 SoftReference<ConcurrentHashMap<SDKey, SDCache>> cacheRef;
303 public static SDCache get(Font font, FontRenderContext frc) {
327 ConcurrentHashMap<SDKey, SDCache> cache = null;
328 SDCache res = null;
336 res = new SDCache(font, frc);
338 cache = new ConcurrentHashMap<SDKey, SDCache>(10);
340 SoftReference<ConcurrentHashMap<SDKey, SDCache>>(cache);
383 SDCache txinf
[all...]

Completed in 23 milliseconds