Searched defs:nextBox (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisiblePosition.cpp204 InlineBox* nextBox = box; local
206 nextBox = nextBox->nextLeafChild();
207 } while (nextBox && nextBox->bidiLevel() > level);
209 if (nextBox && nextBox->bidiLevel() == level)
238 while (InlineBox* nextBox = box->nextLeafChild()) {
239 if (nextBox->bidiLevel() < level)
241 box = nextBox;
328 InlineBox* nextBox = box->nextLeafChildIgnoringLineBreak(); local
352 InlineBox* nextBox = box->nextLeafChild(); local
[all...]
H A DVisibleUnits.cpp174 // If box is null, root is box's next RootInlineBox, and nextBox is the first logical box in root.
175 // Otherwise, root is box's RootInlineBox, and nextBox is the next logical box in the same line.
253 const InlineTextBox* nextBox = leafBoxes.nextTextBox(&startBox->root(), textBox); local
254 if (nextBox)
255 return nextBox;
257 nextBox = leafBoxes.nextTextBox(startBox->root().nextRootBox(), 0);
258 if (nextBox)
259 return nextBox;
275 nextBox = leafBoxes.nextTextBox(nextRoot, 0);
276 if (nextBox) {
315 const InlineTextBox* nextBox = logicallyNextBox(visiblePosition, textBox, nextBoxInDifferentBlock, leafBoxes); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.cpp1128 InlineBox* nextBox = inlineBox->nextLeafChild(); local
1129 if (!nextBox || nextBox->bidiLevel() >= level)
1132 level = nextBox->bidiLevel();
1142 while (InlineBox* nextBox = inlineBox->nextLeafChild()) {
1143 if (nextBox->bidiLevel() < level)
1145 inlineBox = nextBox;
1154 InlineBox* nextBox = inlineBox; local
1156 nextBox = nextBox
1197 InlineBox* nextBox = inlineBox->nextLeafChildIgnoringLineBreak(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGInlineTextBox.cpp74 InlineTextBox* nextBox = nextTextBox(); local
75 if (nextBox)
76 nextBox->dirtyLineBoxes();
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.cpp556 const InlineBox* nextBox = box; local
558 rightmostBox = nextBox;
559 nextBox = rightmostBox->nextLeafChildIgnoringLineBreak();
560 } while (nextBox && nextBox->bidiLevel() >= box->bidiLevel());
568 const InlineBox* nextBox = box->nextLeafChildIgnoringLineBreak(); local
569 if ((nextBox && nextBox->bidiLevel() == box->bidiLevel())
574 if (nextBox && nextBox
[all...]

Completed in 3485 milliseconds