Searched defs:GlyphPage (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGlyphPage.h64 // A GlyphPage contains a fixed-size set of GlyphData mappings for a contiguous
72 class PLATFORM_EXPORT GlyphPage : public RefCounted<GlyphPage> { class in namespace:blink
74 static PassRefPtr<GlyphPage> createForMixedFontData(GlyphPageTreeNode* owner)
76 void* slot = fastMalloc(sizeof(GlyphPage) + sizeof(SimpleFontData*) * GlyphPage::size);
77 return adoptRef(new (slot) GlyphPage(owner));
80 static PassRefPtr<GlyphPage> createForSingleFontData(GlyphPageTreeNode* owner, const SimpleFontData* fontData)
83 return adoptRef(new GlyphPage(owner, fontData));
86 PassRefPtr<GlyphPage> createCopiedSystemFallbackPag
[all...]

Completed in 1044 milliseconds