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

  /external/webkit/Source/WebCore/rendering/svg/
SVGTextChunkBuilder.cpp 90 void SVGTextChunkBuilder::addTextChunk(Vector<SVGInlineTextBox*>& lineLayoutBoxes, unsigned boxStart, unsigned boxCount)
92 SVGInlineTextBox* textBox = lineLayoutBoxes[boxStart];
147 for (unsigned i = boxStart; i < boxStart + boxCount; ++i)
SVGTextQuery.cpp 165 unsigned boxStart = queryData->textBox->start();
182 if (positionOffset < boxStart) {
188 if (positionOffset >= boxStart + boxLength)
SVGTextLayoutEngine.cpp 398 unsigned boxStart = textBox->start();
408 if (m_visualCharacterOffset < boxStart) {
414 if (m_visualCharacterOffset >= boxStart + boxLength)
SVGInlineTextBox.cpp 117 int boxStart = start();
118 startPosition = max(startPosition - boxStart, 0);
119 endPosition = min(endPosition - boxStart, static_cast<int>(len()));

Completed in 186 milliseconds