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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.h 43 float calculateGlyphAdvanceAndOrientation(bool isVerticalText, SVGTextMetrics&, float angle, float& xOrientationShift, float& yOrientationShift) const;
SVGTextLayoutEngineBaseline.cpp 186 float SVGTextLayoutEngineBaseline::calculateGlyphAdvanceAndOrientation(bool isVerticalText, SVGTextMetrics& metrics, float angle, float& xOrientationShift, float& yOrientationShift) const
204 xOrientationShift = (ascentMinusDescent - metrics.width()) / 2;
207 xOrientationShift = (ascentMinusDescent + metrics.width()) / 2;
210 xOrientationShift = ascentMinusDescent;
224 xOrientationShift = metrics.width();
227 xOrientationShift = metrics.width();
SVGTextLayoutEngine.cpp 495 float xOrientationShift = 0;
497 float glyphAdvance = baselineLayout.calculateGlyphAdvanceAndOrientation(m_isVerticalText, visualMetrics, orientationAngle, xOrientationShift, yOrientationShift);
523 xOrientationShift += m_dx + baselineShift;
534 xOrientationShift -= scaledGlyphAdvance / 2;
606 if (xOrientationShift || yOrientationShift)
607 m_currentTextFragment.transform.translate(xOrientationShift, yOrientationShift);

Completed in 36 milliseconds