HomeSort by relevance Sort by last modified time
    Searched full:cachedfont (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/Source/WebCore/loader/cache/
CachedFont.cpp 28 #include "CachedFont.h"
58 CachedFont::CachedFont(const String &url)
65 CachedFont::~CachedFont()
72 void CachedFont::load(CachedResourceLoader*)
78 void CachedFont::didAddClient(CachedResourceClient* c)
84 void CachedFont::data(PassRefPtr<SharedBuffer> data, bool allDataReceived)
95 void CachedFont::beginLoadIfNeeded(CachedResourceLoader* dl)
103 bool CachedFont::ensureCustomFontData(
    [all...]
CachedFont.h 50 class CachedFont : public CachedResource {
52 CachedFont(const String& url);
53 virtual ~CachedFont();
CachedResourceClient.h 34 class CachedFont;
65 virtual void fontLoaded(CachedFont*) {};
CachedResourceLoader.h 43 class CachedFont;
66 CachedFont* requestFont(const String& url);
CachedResourceLoader.cpp 31 #include "CachedFont.h"
68 return new CachedFont(url.string());
160 CachedFont* CachedResourceLoader::requestFont(const String& url)
162 return static_cast<CachedFont*>(requestResource(CachedResource::FontResource, url, String()));
MemoryCache.cpp 27 #include "CachedFont.h"
  /external/proguard/src/proguard/gui/splash/
VariableSizeFont.java 36 private Font cachedFont;
60 cachedFont = font.deriveFont((float)s);
63 return cachedFont;
  /external/webkit/Source/WebCore/css/
CSSFontFaceSource.h 36 class CachedFont;
49 CSSFontFaceSource(const String&, CachedFont* = 0);
59 virtual void fontLoaded(CachedFont*);
74 CachedResourceHandle<CachedFont> m_font; // For remote fonts, a pointer to our cached resource.
CSSFontFaceSource.cpp 29 #include "CachedFont.h"
49 CSSFontFaceSource::CSSFontFaceSource(const String& str, CachedFont* font)
93 void CSSFontFaceSource::fontLoaded(CachedFont*)
CSSFontSelector.cpp 30 #include "CachedFont.h"
248 CachedFont* cachedFont = m_document->cachedResourceLoader()->requestFont(item->resource());
249 if (cachedFont) {
250 source = new CSSFontFaceSource(item->resource(), cachedFont);