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

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngineBaseline.h 44 float calculateGlyphAdvanceAndOrientation(bool isVerticalText, SVGTextMetrics&, float angle, float& xOrientationShift, float& yOrientationShift) const;
SVGTextLayoutEngineBaseline.cpp 185 float SVGTextLayoutEngineBaseline::calculateGlyphAdvanceAndOrientation(bool isVerticalText, SVGTextMetrics& metrics, float angle, float& xOrientationShift, float& yOrientationShift) const
204 yOrientationShift = fontMetrics.floatAscent();
208 yOrientationShift = metrics.width();
221 yOrientationShift = -metrics.width();
224 yOrientationShift = -fontMetrics.floatAscent();
SVGTextLayoutEngine.cpp 510 float yOrientationShift = 0;
511 float glyphAdvance = baselineLayout.calculateGlyphAdvanceAndOrientation(m_isVerticalText, visualMetrics, orientationAngle, xOrientationShift, yOrientationShift);
538 yOrientationShift -= scaledGlyphAdvance / 2;
549 yOrientationShift += m_dy - baselineShift;
631 if (xOrientationShift || yOrientationShift)
632 m_currentTextFragment.transform.translate(xOrientationShift, yOrientationShift);

Completed in 89 milliseconds