Searched refs:horizontalAdvanceX (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGFontData.cpp31 , m_horizontalAdvanceX(fontFaceElement->horizontalAdvanceX())
H A DSVGFontData.h38 float horizontalAdvanceX() const { return m_horizontalAdvanceX; } function in class:WebCore::SVGFontData
H A DSVGGlyphElement.h59 , horizontalAdvanceX(0.0f)
79 && horizontalAdvanceX == other.horizontalAdvanceX
94 float horizontalAdvanceX; member in struct:WebCore::SVGGlyphIdentifier
H A DSVGFontFaceElement.h42 float horizontalAdvanceX() const;
H A DSVGGlyphElement.cpp113 if (identifier.horizontalAdvanceX == SVGGlyphIdentifier::inheritedValue())
114 identifier.horizontalAdvanceX = svgFontData->horizontalAdvanceX();
158 identifier.horizontalAdvanceX = parseSVGGlyphAttribute(element, horiz_adv_xAttr);
H A DSVGFontFaceElement.cpp160 float SVGFontFaceElement::horizontalAdvanceX() const function in class:WebCore::SVGFontFaceElement
181 return horizontalAdvanceX() / 2.0f;
H A DSVGFont.cpp351 data.length += identifier.horizontalAdvanceX * data.scale;
563 currentPoint.move(identifier.horizontalAdvanceX * scale, 0.0f);
/external/webkit/Source/WebCore/platform/graphics/
H A DSimpleFontData.cpp94 xHeight = letterXGlyphs.isEmpty() ? 2 * ascent / 3 : letterXGlyphs.first().horizontalAdvanceX * scale;
106 m_spaceWidth = spaceGlyphs.isEmpty() ? xHeight : spaceGlyphs.first().horizontalAdvanceX * scale;
110 m_avgCharWidth = numeralZeroGlyphs.isEmpty() ? m_spaceWidth : numeralZeroGlyphs.first().horizontalAdvanceX * scale;
114 m_maxCharWidth = letterWGlyphs.isEmpty() ? ascent : letterWGlyphs.first().horizontalAdvanceX * scale;

Completed in 107 milliseconds