HomeSort by relevance Sort by last modified time
    Searched refs:dxValues (Results 1 - 6 of 6) 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; }
SVGTextLayoutAttributes.cpp 39 m_positioningLists.dxValues.reserveCapacity(length);
49 dxValues.fill(SVGTextLayoutAttributes::emptyValue(), length);
58 dxValues.append(SVGTextLayoutAttributes::emptyValue());
72 dxValues.append(safeValueAtPosition(source.dxValues, position));
113 dumpLayoutVector(m_positioningLists.dxValues);
SVGTextLayoutEngine.h 63 void updateRelativePositionAdjustmentsIfNeeded(Vector<float>& dxValues, Vector<float>& dyValues);
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);
SVGRootInlineBox.cpp 243 swapItemsInVector(firstAttributes.dxValues(), lastAttributes.dxValues(), firstPosition, lastPosition);
SVGTextLayoutAttributesBuilder.cpp 275 fillListAtPosition(m_positioningLists.dxValues, values, position.start);

Completed in 29 milliseconds