Home
last modified time | relevance | path

Searched refs:dxValues (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
DSVGTextLayoutAttributes.h41 Vector<float> dxValues; member
64 Vector<float>& dxValues() { return m_positioningLists.dxValues; } in dxValues() function
65 const Vector<float>& dxValues() const { return m_positioningLists.dxValues; } in dxValues() function
DSVGTextLayoutAttributes.cpp39 m_positioningLists.dxValues.reserveCapacity(length); in reserveCapacity()
49 dxValues.fill(SVGTextLayoutAttributes::emptyValue(), length); in fillWithEmptyValues()
58 dxValues.append(SVGTextLayoutAttributes::emptyValue()); in appendEmptyValues()
72 dxValues.append(safeValueAtPosition(source.dxValues, position)); in appendValuesFromPosition()
113 dumpLayoutVector(m_positioningLists.dxValues); in dump()
DSVGTextLayoutEngine.cpp86 void SVGTextLayoutEngine::updateRelativePositionAdjustmentsIfNeeded(Vector<float>& dxValues, Vector… in updateRelativePositionAdjustmentsIfNeeded() argument
89 if (dxValues.isEmpty() && dyValues.isEmpty()) in updateRelativePositionAdjustmentsIfNeeded()
93 if (!dxValues.isEmpty()) { in updateRelativePositionAdjustmentsIfNeeded()
94 float& dxCurrent = dxValues.at(m_logicalCharacterOffset); in updateRelativePositionAdjustmentsIfNeeded()
485 Vector<float>& dxValues = logicalAttributes.dxValues(); in layoutTextOnLineOrPath() local
517 updateRelativePositionAdjustmentsIfNeeded(dxValues, dyValues); in layoutTextOnLineOrPath()
DSVGTextLayoutEngine.h63 … void updateRelativePositionAdjustmentsIfNeeded(Vector<float>& dxValues, Vector<float>& dyValues);
DSVGRootInlineBox.cpp243 …swapItemsInVector(firstAttributes.dxValues(), lastAttributes.dxValues(), firstPosition, lastPositi… in swapItemsInLayoutAttributes()
DSVGTextLayoutAttributesBuilder.cpp275 fillListAtPosition(m_positioningLists.dxValues, values, position.start); in fillAttributesAtPosition()