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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontData.cpp 27 #include "core/platform/graphics/SVGGlyph.h"
127 SVGGlyph svgGlyph = associatedFontElement->svgGlyphForGlyph(glyph);
128 SVGGlyphElement::inheritUnspecifiedAttributes(svgGlyph, this);
129 return svgGlyph.horizontalAdvanceX * scaleEmToUnits(fontSize, svgFontFaceElement->unitsPerEm());
135 Vector<SVGGlyph::ArabicForm>& arabicForms = iterator.arabicForms();
184 Vector<SVGGlyph> glyphs;
198 SVGGlyph& svgGlyph = glyphs[0];
199 iterator.setLastGlyphName(svgGlyph.glyphName)
    [all...]
SVGFontElement.cpp 90 // empty SVGGlyph with the character, so the SVG Font will be used
94 Vector<SVGGlyph> glyphs;
111 SVGGlyph newGlyphPart;
154 SVGGlyph svgGlyph = SVGGlyphElement::buildGenericGlyphIdentifier(firstMissingGlyphElement);
155 m_glyphMap.appendToGlyphTable(svgGlyph);
156 m_missingGlyph = svgGlyph.tableEntry;
235 void SVGFontElement::collectGlyphsForString(const String& string, Vector<SVGGlyph>& glyphs)
241 void SVGFontElement::collectGlyphsForGlyphName(const String& glyphName, Vector<SVGGlyph>& glyphs)
248 SVGGlyph SVGFontElement::svgGlyphForGlyph(Glyph glyph
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextRunRenderingContext.cpp 130 SVGGlyph svgGlyph = fontElement->svgGlyphForGlyph(glyph);
131 ASSERT(!svgGlyph.isPartOfLigature);
132 ASSERT(svgGlyph.tableEntry == glyph);
134 SVGGlyphElement::inheritUnspecifiedAttributes(svgGlyph, svgFontData);
137 if (svgGlyph.pathData.isEmpty()) {
146 glyphOrigin.setX(svgGlyph.verticalOriginX * scale);
147 glyphOrigin.setY(svgGlyph.verticalOriginY * scale);
154 Path glyphPath = svgGlyph.pathData;

Completed in 1141 milliseconds