Home
last modified time | relevance | path

Searched refs:glyphPageZero (Results 1 – 4 of 4) sorted by relevance

/external/webkit/WebCore/platform/graphics/
DSimpleFontData.cpp110 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page(); in initCharWidths() local
113 if (m_avgCharWidth <= 0.f && glyphPageZero) { in initCharWidths()
115 Glyph digitZeroGlyph = glyphPageZero->glyphDataForCharacter(digitZeroChar).glyph; in initCharWidths()
130 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page(); in platformGlyphInit() local
131 if (!glyphPageZero) { in platformGlyphInit()
145 m_spaceGlyph = glyphPageZero->glyphDataForCharacter(' ').glyph; in platformGlyphInit()
156 Glyph zeroWidthSpaceGlyph = glyphPageZero->glyphDataForCharacter(0).glyph; in platformGlyphInit()
/external/webkit/WebCore/platform/graphics/win/
DSimpleFontDataCGWin.cpp103 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page(); in platformInit() local
104 Glyph xGlyph = glyphPageZero ? glyphPageZero->glyphDataForCharacter('x').glyph : 0; in platformInit()
/external/webkit/WebCore/platform/graphics/chromium/
DSimpleFontDataLinux.cpp111 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page(); in platformInit() local
113 if (glyphPageZero) { in platformInit()
115 const Glyph xGlyph = glyphPageZero->glyphDataForCharacter(x_char).glyph; in platformInit()
/external/webkit/WebCore/platform/graphics/mac/
DSimpleFontDataMac.mm264 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
265 NSGlyph xGlyph = glyphPageZero ? glyphPageZero->glyphDataForCharacter('x').glyph : 0;
285 GlyphPage* glyphPageZero = GlyphPageTreeNode::getRootChild(this, 0)->page();
286 if (glyphPageZero) {
294 Glyph glyph = glyphPageZero->glyphDataForCharacter((i < 26 ? i + 'a' : ' ')).glyph;