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

  /external/webkit/Source/WebKit/chromium/src/
WebFontCache.cpp 34 #include "FontCache.h"
43 return fontCache()->fontDataCount();
49 return fontCache()->inactiveFontDataCount();
55 fontCache()->invalidate();
  /external/webkit/Source/WebCore/platform/graphics/
FontFallbackList.cpp 33 #include "FontCache.h"
45 , m_generation(fontCache()->generation())
60 m_generation = fontCache()->generation();
69 fontCache()->releaseFontData(static_cast<const SimpleFontData*>(m_fontList[i].first));
104 ASSERT(fontCache()->generation() == m_generation);
105 const FontData* result = fontCache()->getFontData(*font, m_familyIndex, m_fontSelector.get());
117 ASSERT(fontCache()->generation() == m_generation);
118 const FontData* fontData = fontCache()->getCachedFontData(&platformData);
FontCache.h 53 class FontCache {
54 WTF_MAKE_NONCOPYABLE(FontCache); WTF_MAKE_FAST_ALLOCATED;
56 friend FontCache* fontCache();
97 FontCache();
98 ~FontCache();
113 // Get the global fontCache.
114 FontCache* fontCache();
FontCache.cpp 31 #include "FontCache.h"
46 FontCache* fontCache()
48 DEFINE_STATIC_LOCAL(FontCache, globalFontCache, ());
52 FontCache::FontCache()
179 FontPlatformData* FontCache::getCachedFontPlatformData(const FontDescription& fontDescription,
256 SimpleFontData* FontCache::getCachedFontData(const FontDescription& fontDescription, const AtomicString& family, bool checkingAlternateName)
265 SimpleFontData* FontCache::getCachedFontData(const FontPlatformData* platformData)
289 void FontCache::releaseFontData(const SimpleFontData* fontData
    [all...]
FontFastPath.cpp 27 #include "FontCache.h"
202 const SimpleFontData* characterFontData = fontCache()->getFontDataForCharacters(*this, codeUnits, codeUnitsLength);
  /external/webkit/Source/WebCore/platform/graphics/wince/
GlyphPageTreeNodeWinCE.cpp 25 #include "FontCache.h"
55 } else if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) {
57 } else if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) {
SimpleFontDataWinCE.cpp 35 #include "FontCache.h"
72 FontPlatformData* result = fontCache()->getCachedFontPlatformData(fontDesc, m_platformData.family());
109 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
111 IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface();
FontPlatformData.cpp 25 #include "FontCache.h"
58 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface())
61 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface())
272 if (IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface()) {
274 if (IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface()) {
FontCacheWinCE.cpp 31 #include "FontCache.h"
54 IMultiLanguage* FontCache::getMultiLanguageInterface()
63 IMLangFontLink2* FontCache::getFontLinkInterface()
65 IMLangFontLink* FontCache::getFontLinkInterface()
151 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
153 IMLangFontLink* langFontLink = fontCache()->getFontLinkInterface();
208 void FontCache::platformInit()
212 void FontCache::comInitialize()
216 void FontCache::comUninitialize()
228 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length
    [all...]
  /external/webkit/Source/WebCore/css/
CSSFontFaceSource.cpp 33 #include "FontCache.h"
112 SimpleFontData* fontData = fontCache()->getCachedFontData(fontDescription, m_string);
182 SimpleFontData* tempData = fontCache()->getCachedFontData(fontDescription, m_string);
184 tempData = fontCache()->getLastResortFallbackFont(fontDescription);
CSSFontSelector.cpp 44 #include "FontCache.h"
67 fontCache()->addClient(this);
72 fontCache()->removeClient(this);
329 fontCache()->getTraitsInFamily(familyName, locallyInstalledFontsTraitsMasks);
415 return fontCache()->getCachedFontData(fontDescription, genericFamily);
  /external/webkit/Source/WebKit/win/
WebCoreStatistics.cpp 32 #include <WebCore/FontCache.h>
196 *count = (UINT) fontCache()->fontDataCount();
205 *count = (UINT) fontCache()->inactiveFontDataCount();
211 fontCache()->purgeInactiveFontData();
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontCacheMac.mm 31 #import "FontCache.h"
50 ASSERT_UNUSED(observer, observer == fontCache());
52 fontCache()->invalidate();
57 fontCache()->invalidate();
61 void FontCache::platformInit()
94 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length)
150 SimpleFontData* FontCache::getSimilarFontPlatformData(const Font& font)
171 SimpleFontData* FontCache::getLastResortFallbackFont(const FontDescription& fontDescription)
189 void FontCache::getTraitsInFamily(const AtomicString& familyName, Vector<unsigned>& traitsMasks)
194 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family
    [all...]
SimpleFontDataMac.mm 37 #import "FontCache.h"
355 fontCache()->releaseFontData(m_derivedFontData->smallCaps.leakPtr());
358 fontCache()->releaseFontData(m_derivedFontData->emphasisMark.leakPtr());
401 return fontCache()->getCachedFontData(&scaledFontData);
  /external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.mm 37 #import <WebCore/FontCache.h>
145 return fontCache()->fontDataCount();
150 return fontCache()->inactiveFontDataCount();
155 fontCache()->purgeInactiveFontData();
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 33 #include "FontCache.h"
328 static SimpleFontData* fontDataFromDescriptionAndLogFont(FontCache* fontCache, const FontDescription& fontDescription, const LOGFONT& font, wchar_t* outFontFamilyName)
330 SimpleFontData* fontData = fontCache->getCachedFontData(fontDescription, font.lfFaceName);
403 GetLastResortFallbackFontProcData(FontCache* fontCache, const FontDescription* fontDescription, wchar_t* fontName)
404 : m_fontCache(fontCache)
411 FontCache* m_fontCache;
424 void FontCache::platformInit()
431 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCacheWin.cpp 31 #include "FontCache.h"
49 void FontCache::platformInit()
56 IMLangFontLink2* FontCache::getFontLinkInterface()
138 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
188 const SimpleFontData* FontCache::getFontDataForCharacters(const Font& font, const UChar* characters, int length)
299 SimpleFontData* FontCache::getSimilarFontPlatformData(const Font& font)
304 static SimpleFontData* fontDataFromDescriptionAndLogFont(FontCache* fontCache, const FontDescription& fontDescription, const LOGFONT& font, AtomicString& outFontFamilyName)
307 SimpleFontData* fontData = fontCache->getCachedFontData(fontDescription, familyName);
313 SimpleFontData* FontCache::getLastResortFallbackFont(const FontDescription& fontDescription
    [all...]
SimpleFontDataWin.cpp 33 #include "FontCache.h"
156 IMLangFontLink2* langFontLink = fontCache()->getFontLinkInterface();
  /external/webkit/Source/WebKit/qt/Api/
qwebsettings.cpp 30 #include "FontCache.h"
771 WebCore::fontCache()->invalidate();
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp 57 #include "FontCache.h"
    [all...]

Completed in 716 milliseconds