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

  /external/webkit/WebCore/svg/
SVGFontData.cpp 32 , m_horizontalAdvanceX(fontFaceElement->horizontalAdvanceX())
SVGGlyphElement.h 59 , horizontalAdvanceX(0.0f)
79 horizontalAdvanceX == other.horizontalAdvanceX &&
95 float horizontalAdvanceX;
SVGFontData.h 38 float horizontalAdvanceX() const { return m_horizontalAdvanceX; }
SVGFontFaceElement.h 49 float horizontalAdvanceX() const;
SVGGlyphElement.cpp 112 if (identifier.horizontalAdvanceX == SVGGlyphIdentifier::inheritedValue())
113 identifier.horizontalAdvanceX = svgFontData->horizontalAdvanceX();
143 identifier.horizontalAdvanceX = parseSVGGlyphAttribute(element, horiz_adv_xAttr);
SVGFontFaceElement.cpp 162 float SVGFontFaceElement::horizontalAdvanceX() const
183 return horizontalAdvanceX() / 2.0f;
SVGFont.cpp 347 data.length += identifier.horizontalAdvanceX * data.scale;
557 currentPoint.move(identifier.horizontalAdvanceX * scale, 0.0f);
  /external/webkit/WebCore/platform/graphics/
SimpleFontData.cpp 83 m_spaceWidth = spaceGlyphs.isEmpty() ? m_xHeight : static_cast<float>(spaceGlyphs.first().horizontalAdvanceX * scale);
87 m_avgCharWidth = numeralZeroGlyphs.isEmpty() ? m_spaceWidth : static_cast<float>(numeralZeroGlyphs.first().horizontalAdvanceX * scale);
91 m_maxCharWidth = letterWGlyphs.isEmpty() ? m_ascent : static_cast<float>(letterWGlyphs.first().horizontalAdvanceX * scale);

Completed in 73 milliseconds