OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FontCache
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
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
...]
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
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
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)
/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
...]
Completed in 34 milliseconds