HomeSort by relevance Sort by last modified time
    Searched defs:dxValues (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributes.h 41 Vector<float> dxValues;
64 Vector<float>& dxValues() { return m_positioningLists.dxValues; }
65 const Vector<float>& dxValues() const { return m_positioningLists.dxValues; }
SVGTextLayoutEngine.cpp 86 void SVGTextLayoutEngine::updateRelativePositionAdjustmentsIfNeeded(Vector<float>& dxValues, Vector<float>& dyValues)
89 if (dxValues.isEmpty() && dyValues.isEmpty())
93 if (!dxValues.isEmpty()) {
94 float& dxCurrent = dxValues.at(m_logicalCharacterOffset);
485 Vector<float>& dxValues = logicalAttributes.dxValues();
517 updateRelativePositionAdjustmentsIfNeeded(dxValues, dyValues);

Completed in 21 milliseconds