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

  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 43 GlyphData Font::glyphDataForCharacter(UChar32 c, bool mirror, FontDataVariant variant) const
79 GlyphData data = page->glyphDataForCharacter(c);
92 GlyphData brokenIdeographData = brokenIdeographPage->glyphDataForCharacter(c);
106 GlyphData verticalRightData = verticalRightPage->glyphDataForCharacter(c);
120 GlyphData uprightData = uprightPage->glyphDataForCharacter(c);
152 GlyphData data = page->glyphDataForCharacter(c);
163 GlyphData data = variantPage->glyphDataForCharacter(c);
208 GlyphData data = fallbackPage && fallbackPage->fontDataForCharacter(c) ? fallbackPage->glyphDataForCharacter(c) : characterFontData->missingGlyphData();
217 return page->glyphDataForCharacter(c);
232 return page->glyphDataForCharacter(c)
    [all...]
SimpleFontData.cpp 134 Glyph digitZeroGlyph = glyphPageZero->glyphDataForCharacter(digitZeroChar).glyph;
161 m_zeroWidthSpaceGlyph = glyphPageZero->glyphDataForCharacter(0).glyph;
166 m_spaceGlyph = glyphPageZero->glyphDataForCharacter(' ').glyph;
WidthIterator.cpp 123 const GlyphData& glyphData = m_font->glyphDataForCharacter(c, rtl);
147 // glyphDataForCharacter() returned whether it chose to use a small caps font.
151 const GlyphData& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
GlyphPageTreeNode.h 81 GlyphData glyphDataForCharacter(UChar32 c) const
Font.h 142 GlyphData glyphDataForCharacter(UChar32, bool mirror, FontDataVariant = AutoVariant) const;
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 201 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[0], curr[1]), false);
205 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[-1], curr[0]), false);
208 nextGlyphData = m_font.glyphDataForCharacter(*curr, false);
233 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[0], curr[1]), false);
237 nextGlyphData = m_font.glyphDataForCharacter(U16_GET_SUPPLEMENTARY(curr[-1], curr[0]), false);
240 nextGlyphData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps ? SmallCapsVariant : AutoVariant);
SimpleFontDataMac.mm 283 NSGlyph xGlyph = glyphPageZero ? glyphPageZero->glyphDataForCharacter('x').glyph : 0;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ComplexTextControllerLinux.cpp 162 m_currentFontData = m_font->glyphDataForCharacter(m_item.string[m_item.item.pos], false).fontData;
165 const SimpleFontData* nextFontData = m_font->glyphDataForCharacter(m_item.string[m_item.item.pos + endOfRun], false).fontData;
202 const FontData* fontData = m_font->glyphDataForCharacter(m_item.string[m_item.item.pos], false, fontDataVariant).fontData;
SimpleFontDataLinux.cpp 141 const Glyph xGlyph = glyphPageZero->glyphDataForCharacter(x_char).glyph;
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCGWin.cpp 101 Glyph xGlyph = glyphPageZero ? glyphPageZero->glyphDataForCharacter('x').glyph : 0;
UniscribeController.cpp 128 const SimpleFontData* nextFontData = m_font.glyphDataForCharacter(*curr, false).fontData;
149 nextFontData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps ? SmallCapsVariant : AutoVariant).fontData;
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontAndroid.cpp 655 const FontData* glyphData = m_font->glyphDataForCharacter(
659 const FontData* nextGlyphData = m_font->glyphDataForCharacter(
729 const FontData* fontData = m_font->glyphDataForCharacter(m_run[0], false).fontData;
860 static Glyph spaceGlyph = m_font->glyphDataForCharacter(space, false).glyph;
    [all...]

Completed in 392 milliseconds