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

  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontUtilsChromiumWin.cpp 285 typedef HashMap<String, FontData> FontDataCache;
404 static FontDataCache fontDataCache;
410 FontDataCache::iterator iter = fontDataCache.find(fontKey);
412 if (iter == fontDataCache.end()) {
419 pair<FontDataCache::iterator, bool> entry = fontDataCache.add(fontKey, FontData());
  /external/webkit/Source/WebCore/platform/graphics/
FontCache.cpp 248 typedef HashMap<FontPlatformData, pair<SimpleFontData*, unsigned>, FontDataCacheKeyHash, FontDataCacheKeyTraits> FontDataCache;
250 static FontDataCache* gFontDataCache = 0;
271 gFontDataCache = new FontDataCache;
275 FontDataCache::iterator result = gFontDataCache->find(*platformData);
294 FontDataCache::iterator it = gFontDataCache->find(fontData->platformData());

Completed in 19 milliseconds