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

/external/webkit/Source/WebCore/platform/graphics/
H A DFontCache.cpp128 static FontPlatformDataCache* gFontPlatformDataCache = 0; member in namespace:WebCore
183 if (!gFontPlatformDataCache) {
184 gFontPlatformDataCache = new FontPlatformDataCache;
193 FontPlatformDataCache::iterator it = gFontPlatformDataCache->find(key);
194 if (it == gFontPlatformDataCache->end()) {
196 gFontPlatformDataCache->set(key, result);
210 gFontPlatformDataCache->set(key, new FontPlatformData(*result)); // Cache the result under the old name.
336 if (gFontPlatformDataCache) {
338 keysToRemove.reserveInitialCapacity(gFontPlatformDataCache->size());
339 FontPlatformDataCache::iterator platformDataEnd = gFontPlatformDataCache
[all...]

Completed in 40 milliseconds