Searched refs:boxPosition (Results 1 – 4 of 4) sorted by relevance
/external/webkit/Source/WebCore/rendering/svg/ |
D | SVGTextChunkBuilder.cpp | 53 unsigned boxPosition = 0; in buildTextChunks() local 55 for (; boxPosition < boxCount; ++boxPosition) { in buildTextChunks() 56 SVGInlineTextBox* textBox = lineLayoutBoxes[boxPosition]; in buildTextChunks() 61 lastChunkStartPosition = boxPosition; in buildTextChunks() 64 ASSERT(boxPosition > lastChunkStartPosition); in buildTextChunks() 65 … addTextChunk(lineLayoutBoxes, lastChunkStartPosition, boxPosition - lastChunkStartPosition); in buildTextChunks() 66 lastChunkStartPosition = boxPosition; in buildTextChunks() 73 if (boxPosition - lastChunkStartPosition > 0) in buildTextChunks() 74 addTextChunk(lineLayoutBoxes, lastChunkStartPosition, boxPosition - lastChunkStartPosition); in buildTextChunks() 175 for (unsigned boxPosition = 0; boxPosition < boxCount; ++boxPosition) { in processTextChunk() local [all …]
|
D | SVGTextChunk.cpp | 41 for (unsigned boxPosition = 0; boxPosition < boxCount; ++boxPosition) { in calculateLength() local 42 SVGInlineTextBox* textBox = m_boxes.at(boxPosition); in calculateLength()
|
D | SVGTextLayoutEngine.cpp | 270 for (unsigned boxPosition = 0; boxPosition < boxCount; ++boxPosition) { in dumpTextBoxes() local 271 SVGInlineTextBox* textBox = boxes.at(boxPosition); in dumpTextBoxes() 273 …g text fragments for SVGInlineTextBox, textBox=%p, textRenderer=%p\n", boxPosition, textBox, textB… in dumpTextBoxes() 297 for (unsigned boxPosition = 0; boxPosition < boxCount; ++boxPosition) { in finalizeTransformMatrices() local 298 SVGInlineTextBox* textBox = boxes.at(boxPosition); in finalizeTransformMatrices()
|
D | SVGTextChunkBuilder.h | 50 …void addTextChunk(Vector<SVGInlineTextBox*>& lineLayoutBoxes, unsigned boxPosition, unsigned boxCo…
|