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

  /external/webkit/WebCore/platform/graphics/chromium/
FontUtilsChromiumWin.cpp 202 typedef HashMap<String, FontData> FontDataCache;
309 static FontDataCache fontDataCache;
315 FontDataCache::iterator iter = fontDataCache.find(fontKey);
317 if (iter == fontDataCache.end()) {
324 pair<FontDataCache::iterator, bool> entry = fontDataCache.add(fontKey, FontData());
  /external/webkit/WebCore/platform/graphics/
FontCache.cpp 252 typedef HashMap<FontPlatformData, pair<SimpleFontData*, unsigned>, FontDataCacheKeyHash, FontDataCacheKeyTraits> FontDataCache;
254 static FontDataCache* gFontDataCache = 0;
275 gFontDataCache = new FontDataCache;
279 FontDataCache::iterator result = gFontDataCache->find(*platformData);
298 FontDataCache::iterator it = gFontDataCache->find(fontData->platformData());

Completed in 44 milliseconds