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

/openjdk7/jdk/src/share/classes/sun/awt/
H A DPlatformFont.java51 private Object[] fontCache; field in class:PlatformFont
411 * Create fontCache on demand instead of during construction to
422 if (fontCache == null) {
423 fontCache = new Object[this.FONTCACHESIZE];
426 return fontCache;
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java84 // MAX_CHAR_INDEX. The values in fontCache are created as needed.
85 private static LSBCacheEntry[] fontCache; field in class:SwingUtilities2
89 // nextIndex in fontCache to insert a font into.
91 // LSBCacheEntry used to search in fontCache to see if we already
200 fontCache = new LSBCacheEntry[CACHE_SIZE];
303 for (LSBCacheEntry cacheEntry : fontCache) {
312 fontCache[nextIndex] = searchKey;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp45 AwtFontCache fontCache; variable
159 if (font != NULL && fontCache.Search(font)) {
160 fontCache.Remove(font);
468 hFont = fontCache.Lookup(longName);
470 fontCache.IncRefCount(hFont);
477 fontCache.Add(longName, hFont);
484 fontCache.Clear();
1089 fontCache.m_head = new Item(name, font, fontCache.m_head);
1094 Item* item = fontCache
[all...]

Completed in 49 milliseconds