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

  /external/webkit/WebCore/platform/graphics/
GlyphPageTreeNode.h 53 struct GlyphData {
54 GlyphData(Glyph g = 0, const SimpleFontData* f = 0)
63 // A GlyphPage contains a fixed-size set of GlyphData mappings for a contiguous
81 GlyphData glyphDataForCharacter(UChar32 c) const
84 return GlyphData(m_glyphs[index], m_glyphFontData[index]);
87 GlyphData glyphDataForIndex(unsigned index) const
90 return GlyphData(m_glyphs[index], m_glyphFontData[index]);
114 void setGlyphDataForIndex(unsigned index, const GlyphData& glyphData)
116 setGlyphDataForIndex(index, glyphData.glyph, glyphData.fontData)
    [all...]
WidthIterator.cpp 116 const GlyphData& glyphData = m_font->glyphDataForCharacter(c, rtl);
117 Glyph glyph = glyphData.glyph;
118 const SimpleFontData* fontData = glyphData.fontData;
145 const GlyphData& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 200 GlyphData glyphData;
201 GlyphData nextGlyphData;
230 glyphData = nextGlyphData;
255 if (nextGlyphData.fontData != glyphData.fontData || nextIsSmallCaps != isSmallCaps || !nextGlyphData.glyph != !glyphData.glyph) {
258 collectComplexTextRunsForCharacters((isSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart, glyphData.glyph ? glyphData.fontData : 0);

Completed in 1347 milliseconds