Home
last modified time | relevance | path

Searched refs:svgGlyph (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGFontData.cpp129 SVGGlyph svgGlyph = associatedFontElement->svgGlyphForGlyph(glyph); in widthForSVGGlyph() local
130 SVGGlyphElement::inheritUnspecifiedAttributes(svgGlyph, this); in widthForSVGGlyph()
131 return svgGlyph.horizontalAdvanceX * scaleEmToUnits(fontSize, svgFontFaceElement->unitsPerEm()); in widthForSVGGlyph()
200 SVGGlyph& svgGlyph = glyphs[0]; in applySVGGlyphSelection() local
201 iterator.setLastGlyphName(svgGlyph.glyphName); in applySVGGlyphSelection()
202 glyphData.glyph = svgGlyph.tableEntry; in applySVGGlyphSelection()
203 advanceLength = svgGlyph.unicodeStringLength; in applySVGGlyphSelection()
211 SVGGlyph& svgGlyph = glyphs[i]; in applySVGGlyphSelection() local
212 if (svgGlyph.isPartOfLigature) in applySVGGlyphSelection()
214 …if (!isCompatibleGlyph(svgGlyph, isVerticalText, language, arabicForms, currentCharacter, currentC… in applySVGGlyphSelection()
[all …]
DSVGFontElement.cpp151 SVGGlyph svgGlyph = SVGGlyphElement::buildGenericGlyphIdentifier(firstMissingGlyphElement); in ensureGlyphCache() local
152 m_glyphMap.appendToGlyphTable(svgGlyph); in ensureGlyphCache()
153 m_missingGlyph = svgGlyph.tableEntry; in ensureGlyphCache()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextRunRenderingContext.cpp130 SVGGlyph svgGlyph = fontElement->svgGlyphForGlyph(glyph); in drawSVGGlyphs() local
131 ASSERT(!svgGlyph.isPartOfLigature); in drawSVGGlyphs()
132 ASSERT(svgGlyph.tableEntry == glyph); in drawSVGGlyphs()
134 SVGGlyphElement::inheritUnspecifiedAttributes(svgGlyph, svgFontData); in drawSVGGlyphs()
137 if (svgGlyph.pathData.isEmpty()) { in drawSVGGlyphs()
146 glyphOrigin.setX(svgGlyph.verticalOriginX * scale); in drawSVGGlyphs()
147 glyphOrigin.setY(svgGlyph.verticalOriginY * scale); in drawSVGGlyphs()
154 Path glyphPath = svgGlyph.pathData; in drawSVGGlyphs()