HomeSort by relevance Sort by last modified time
    Searched refs:FontCache (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
WebFontCache.cpp 34 #include "platform/fonts/FontCache.h"
43 FontCache::fontCache()->invalidate();
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/android/
FontCacheAndroidTest.cpp 6 #include "platform/fonts/FontCache.h"
23 FontCache* fontCache = FontCache::fontCache();
24 ASSERT_TRUE(fontCache);
25 RefPtr<SimpleFontData> fontData = fontCache->platformFallbackForCharacter(fontDescription, testChar, 0);
FontCacheAndroid.cpp 32 #include "platform/fonts/FontCache.h"
72 PassRefPtr<SimpleFontData> FontCache::platformFallbackForCharacter(const FontDescription& fontDescription, UChar32 c, const SimpleFontData*, bool)
81 AtomicString FontCache::getGenericFamilyNameForScript(const AtomicString& familyName, UScriptCode script)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCache.cpp 31 #include "platform/fonts/FontCache.h"
57 FontCache::FontCache()
67 FontCache* FontCache::fontCache()
69 DEFINE_STATIC_LOCAL(FontCache, globalFontCache, ());
73 FontPlatformData* FontCache::getFontPlatformData(const FontDescription& fontDescription,
118 typedef HashMap<FontCache::FontFileKey, RefPtr<OpenTypeVerticalData>, WTF::IntHash<FontCache::FontFileKey>, WTF::UnsignedWithZeroKeyHashTraits<FontCache::FontFileKey> > FontVerticalDataCache
    [all...]
FontCache.h 67 class PLATFORM_EXPORT FontCache {
70 WTF_MAKE_NONCOPYABLE(FontCache); WTF_MAKE_FAST_ALLOCATED;
72 static FontCache* fontCache();
120 FontCache();
121 ~FontCache();
161 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); }
162 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging();
    [all...]
FontFallbackList.cpp 33 #include "platform/fonts/FontCache.h"
46 , m_generation(FontCache::fontCache()->generation())
64 m_generation = FontCache::fontCache()->generation();
74 FontCache::fontCache()->releaseFontData(static_cast<const SimpleFontData*>(m_fontList[i].get()));
149 result = FontCache::fontCache()->getFontData(fontDescription, currFamily->family());
170 return FontCache::fontCache()->getLastResortFallbackFont(fontDescription)
    [all...]
FontFastPath.cpp 27 #include "platform/fonts/FontCache.h"
281 RefPtr<SimpleFontData> characterFontData = FontCache::fontCache()->platformFallbackForCharacter(m_fontDescription, characterToRender, fontDataToSubstitute, isPlatformFont());
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
FontCacheLinux.cpp 27 #include "platform/fonts/FontCache.h"
37 void FontCache::getFontFamilyForCharacter(UChar32 c, const char* preferredLocale, FontCache::SimpleFontFamily* family)
  /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/skia/
FontCacheSkia.cpp 37 #include "platform/fonts/FontCache.h"
47 void FontCache::platformInit()
52 PassRefPtr<SimpleFontData> FontCache::platformFallbackForCharacter(const FontDescription& fontDescription, UChar32 c, const SimpleFontData*, bool)
55 FontCache::SimpleFontFamily family;
56 FontCache::getFontFamilyForCharacter(c, locale.getLanguage(), &family);
91 PassRefPtr<SimpleFontData> FontCache::getLastResortFallbackFont(const FontDescription& description, ShouldRetain shouldRetain)
108 PassRefPtr<SkTypeface> FontCache::createTypeface(const FontDescription& fontDescription, const AtomicString& family, CString& name)
135 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family, float fontSize)
FontCacheSkiaWin.cpp 33 #include "platform/fonts/FontCache.h"
45 FontCache::FontCache()
79 PassRefPtr<SimpleFontData> FontCache::platformFallbackForCharacter(const FontDescription& fontDescription, UChar32 character, const SimpleFontData*, bool)
193 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family, float fontSize)
FontPlatformDataSkia.cpp 36 #include "platform/fonts/FontCache.h"
61 return FontCache::fontCache()->getVerticalData(typeface()->uniqueID(), *this);
FontCustomPlatformDataSkia.cpp 38 #include "platform/fonts/FontCache.h"
97 RefPtr<SkTypeface> typeface = adoptRef(FontCache::fontCache()->fontManager()->createFromStream(stream.get()));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontSelector.cpp 43 #include "platform/fonts/FontCache.h"
119 FontCache::fontCache()->addClient(this);
125 FontCache::fontCache()->removeClient(this);
172 return FontCache::getGenericFamilyNameForScript(FontFamilyNames::webkit_standard, script);
175 return FontCache::getGenericFamilyNameForScript(genericFamilyName, script);
207 return FontCache::fontCache()->getFontData(fontDescription, settingsFamilyName);
CSSFontFaceSource.cpp 32 #include "platform/fonts/FontCache.h"
138 RefPtr<SimpleFontData> fontData = FontCache::fontCache()->getFontData(fontDescription, m_string, true);
221 SimpleFontData* temporaryFont = FontCache::fontCache()->getNonRetainedLastResortFallbackFont(fontDescription);
262 return FontCache::fontCache()->isPlatformFontAvailable(fontDescription, m_string);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontCacheMac.mm 31 #import "platform/fonts/FontCache.h"
57 FontCache::fontCache()->invalidate();
62 ASSERT_UNUSED(observer, observer == FontCache::fontCache());
67 void FontCache::platformInit()
93 PassRefPtr<SimpleFontData> FontCache::platformFallbackForCharacter(const FontDescription& fontDescription, UChar32 character, const SimpleFontData* fontDataToSubstitute, bool disallowSynthetics)
176 PassRefPtr<SimpleFontData> FontCache::getLastResortFallbackFont(const FontDescription& fontDescription, ShouldRetain shouldRetain)
194 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family, float fontSize)
SimpleFontDataMac.mm 36 #import "platform/fonts/FontCache.h"
295 FontCache::fontCache()->releaseFontData(m_derivedFontData->smallCaps.get());
298 FontCache::fontCache()->releaseFontData(m_derivedFontData->emphasisMark.get());
332 return FontCache::fontCache()->fontDataFromFontPlatformData(&scaledFontData);
ComplexTextControllerCoreText.mm 30 #include "platform/fonts/FontCache.h"
65 // FontData, so this loop does not hit the FontCache.
278 runFontData = FontCache::fontCache()->getFontData(m_font.fontDescription(), fontName.get(), false, DoNotRetain).get();
283 runFontData = FontCache::fontCache()->fontDataFromFontPlatformData(&runFontPlatformData, DoNotRetain).get();
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontCacheWin.cpp 37 #include "platform/fonts/FontCache.h"
321 PassRefPtr<SimpleFontData> FontCache::fontDataFromDescriptionAndLogFont(const FontDescription& fontDescription, ShouldRetain shouldRetain, const LOGFONT& font, wchar_t* outFontFamilyName)
365 GetLastResortFallbackFontProcData(FontCache* fontCache, const FontDescription* fontDescription, FontCache::ShouldRetain shouldRetain, wchar_t* fontName)
366 : m_fontCache(fontCache)
374 FontCache* m_fontCache;
376 FontCache::ShouldRetain m_shouldRetain;
388 void FontCache::platformInit()
395 PassRefPtr<SimpleFontData> FontCache::platformFallbackForCharacter(const FontDescription& fontDescription, UChar32 c, const SimpleFontD (…)
    [all...]
FontPlatformDataWin.cpp 36 #include "platform/fonts/FontCache.h"
435 return FontCache::fontCache()->useSubpixelPositioning();
  /external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk 191 third_party/WebKit/Source/platform/fonts/FontCache.cpp \
    [all...]
blink_platform.target.darwin-mips.mk 190 third_party/WebKit/Source/platform/fonts/FontCache.cpp \
    [all...]
blink_platform.target.darwin-x86.mk 190 third_party/WebKit/Source/platform/fonts/FontCache.cpp \
    [all...]
blink_platform.target.linux-arm.mk 191 third_party/WebKit/Source/platform/fonts/FontCache.cpp \
    [all...]
blink_platform.target.linux-mips.mk 190 third_party/WebKit/Source/platform/fonts/FontCache.cpp \
    [all...]

Completed in 525 milliseconds

1 2