HomeSort by relevance Sort by last modified time
    Searched defs:FontCache (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/content/common/
font_cache_dispatcher_win.cc 19 class FontCache {
21 static FontCache* GetInstance() {
22 return Singleton<FontCache>::get();
26 typedef std::map<base::string16, FontCache::CacheElement> FontNameToElement;
71 typedef std::map<base::string16, FontCache::CacheElement> FontNameToElement;
123 friend struct DefaultSingletonTraits<FontCache>;
125 FontCache() {
132 DISALLOW_COPY_AND_ASSIGN(FontCache);
185 FontCache::GetInstance()->PreCacheFont(font, this);
191 FontCache::GetInstance()->ReleaseCachedFonts(this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCache.h 70 class PLATFORM_EXPORT FontCache {
73 WTF_MAKE_NONCOPYABLE(FontCache); WTF_MAKE_FAST_ALLOCATED;
75 static FontCache* fontCache();
135 FontCache();
136 ~FontCache();
181 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); }
182 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging();
    [all...]
FontCache.cpp 31 #include "platform/fonts/FontCache.h"
58 FontCache::FontCache()
69 bool FontCache::s_useDirectWrite = false;
70 IDWriteFactory* FontCache::s_directWriteFactory = 0;
71 bool FontCache::s_useSubpixelPositioning = false;
72 float FontCache::s_deviceScaleFactor = 1.0;
75 FontCache* FontCache::fontCache()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontCacheSkiaWin.cpp 33 #include "platform/fonts/FontCache.h"
46 HashMap<String, RefPtr<SkTypeface> >* FontCache::s_sideloadedFonts = 0;
49 void FontCache::addSideloadedFontForTesting(SkTypeface* typeface)
58 FontCache::FontCache()
79 PassRefPtr<SimpleFontData> FontCache::fallbackFontForCharacter(
296 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const FontFaceCreationParams& creationParams, float fontSize)

Completed in 74 milliseconds