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();
132 FontCache();
133 ~FontCache();
176 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); }
177 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging();
    [all...]
FontCache.cpp 31 #include "platform/fonts/FontCache.h"
57 FontCache::FontCache()
68 bool FontCache::s_useDirectWrite = false;
69 IDWriteFactory* FontCache::s_directWriteFactory = 0;
70 bool FontCache::s_useSubpixelPositioning = false;
73 FontCache* FontCache::fontCache()
75 DEFINE_STATIC_LOCAL(FontCache, globalFontCache, ())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontCacheSkiaWin.cpp 33 #include "platform/fonts/FontCache.h"
45 HashMap<String, SkTypeface*>* FontCache::s_sideloadedFonts = 0;
48 void FontCache::addSideloadedFontForTesting(SkTypeface* typeface)
57 FontCache::FontCache()
88 PassRefPtr<SimpleFontData> FontCache::fallbackFontForCharacter(const FontDescription& fontDescription, UChar32 character, const SimpleFontData*)
204 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family, float fontSize)

Completed in 416 milliseconds