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 34 #include "platform/fonts/SVGGlyph.h"
145 SVGGlyph svgGlyph = associatedFontElement->svgGlyphForGlyph(glyph);
146 SVGGlyphElement::inheritUnspecifiedAttributes(svgGlyph, this);
147 return svgGlyph.horizontalAdvanceX * scaleEmToUnits(fontSize, svgFontFaceElement->unitsPerEm());
153 Vector<SVGGlyph::ArabicForm>& arabicForms = iterator.arabicForms();
199 Vector<SVGGlyph> glyphs;
213 SVGGlyph& svgGlyph = glyphs[0];
214 glyphData.glyph = svgGlyph.tableEntry
    [all...]
SVGFontElement.cpp 65 // empty SVGGlyph with the character, so the SVG Font will be used
69 Vector<SVGGlyph> glyphs;
86 SVGGlyph newGlyphPart;
98 Vector<SVGGlyph> SVGFontElement::buildGlyphList(const UnicodeRanges& unicodeRanges, const HashSet<String>& unicodeNames, const HashSet<String>& glyphNames) const
100 Vector<SVGGlyph> glyphs;
114 const SVGGlyph& glyph = m_glyphMap.glyphIdentifierForGlyphName(*it);
124 Vector<SVGGlyph> glyphsLhs = buildGlyphList(kerningPair.unicodeRange1, kerningPair.unicodeName1, kerningPair.glyphName1);
125 Vector<SVGGlyph> glyphsRhs = buildGlyphList(kerningPair.unicodeRange2, kerningPair.unicodeName2, kerningPair.glyphName2);
193 SVGGlyph svgGlyph = SVGGlyphElement::buildGenericGlyphIdentifier(firstMissingGlyphElement)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextRunRenderingContext.cpp 117 SVGGlyph svgGlyph = fontElement->svgGlyphForGlyph(glyph);
118 ASSERT(!svgGlyph.isPartOfLigature);
119 ASSERT(svgGlyph.tableEntry == glyph);
121 SVGGlyphElement::inheritUnspecifiedAttributes(svgGlyph, svgFontData);
124 if (svgGlyph.pathData.isEmpty()) {
133 glyphOrigin.setX(svgGlyph.verticalOriginX * scale);
134 glyphOrigin.setY(svgGlyph.verticalOriginY * scale);
141 Path glyphPath = svgGlyph.pathData;

Completed in 192 milliseconds