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

  /external/webkit/WebCore/platform/graphics/
FontFastPath.cpp 44 GlyphData Font::glyphDataForCharacter(UChar32 c, bool mirror, bool forceSmallCaps) const
77 GlyphData data = page->glyphDataForCharacter(c);
95 GlyphData data = page->glyphDataForCharacter(c);
106 GlyphData data = smallCapsPage->glyphDataForCharacter(c);
151 GlyphData data = fallbackPage && fallbackPage->fontDataForCharacter(c) ? fallbackPage->glyphDataForCharacter(c) : characterFontData->missingGlyphData();
160 return page->glyphDataForCharacter(c);
175 return page->glyphDataForCharacter(c);
SimpleFontData.cpp 117 Glyph digitZeroGlyph = glyphPageZero->glyphDataForCharacter(digitZeroChar).glyph;
147 m_spaceGlyph = glyphPageZero->glyphDataForCharacter(' ').glyph;
158 Glyph zeroWidthSpaceGlyph = glyphPageZero->glyphDataForCharacter(0).glyph;
WidthIterator.cpp 116 const GlyphData& glyphData = m_font->glyphDataForCharacter(c, rtl);
141 // glyphDataForCharacter() returned whether it chose to use a small caps font.
145 const GlyphData& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
GlyphPageTreeNode.h 81 GlyphData glyphDataForCharacter(UChar32 c) const
Font.h 129 GlyphData glyphDataForCharacter(UChar32, bool mirror, bool forceSmallCaps = false) const;
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 195 collectComplexTextRunsForCharacters(&hyphen, 1, m_end - 1, m_font.glyphDataForCharacter(hyphen, false).fontData);
208 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[0], curr[1]), false);
212 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[-1], curr[0]), false);
215 nextGlyphData = m_font.glyphDataForCharacter(*curr, false);
240 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[0], curr[1]), false);
244 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[-1], curr[0]), false);
247 nextGlyphData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps);
270 collectComplexTextRunsForCharacters(&hyphen, 1, m_end - 1, m_font.glyphDataForCharacter(hyphen, false).fontData);
SimpleFontDataMac.mm 265 NSGlyph xGlyph = glyphPageZero ? glyphPageZero->glyphDataForCharacter('x').glyph : 0;
294 Glyph glyph = glyphPageZero->glyphDataForCharacter((i < 26 ? i + 'a' : ' ')).glyph;
  /external/webkit/WebCore/platform/graphics/chromium/
SimpleFontDataLinux.cpp 115 const Glyph xGlyph = glyphPageZero->glyphDataForCharacter(x_char).glyph;
  /external/webkit/WebCore/platform/graphics/win/
SimpleFontDataCGWin.cpp 104 Glyph xGlyph = glyphPageZero ? glyphPageZero->glyphDataForCharacter('x').glyph : 0;
UniscribeController.cpp 123 const SimpleFontData* nextFontData = m_font.glyphDataForCharacter(*curr, false).fontData;
144 nextFontData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps).fontData;

Completed in 206 milliseconds