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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 205 InlineBox* nextBox = box;
207 nextBox = nextBox->nextLeafChild();
208 } while (nextBox && nextBox->bidiLevel() > level);
210 if (nextBox && nextBox->bidiLevel() == level)
239 while (InlineBox* nextBox = box->nextLeafChild()) {
240 if (nextBox->bidiLevel() < level)
242 box = nextBox;
    [all...]
VisibleUnits.cpp 172 // If box is null, root is box's next RootInlineBox, and nextBox is the first logical box in root.
173 // Otherwise, root is box's RootInlineBox, and nextBox is the next logical box in the same line.
251 const InlineTextBox* nextBox = leafBoxes.nextTextBox(startBox->root(), textBox);
252 if (nextBox)
253 return nextBox;
255 nextBox = leafBoxes.nextTextBox(startBox->root()->nextRootBox(), 0);
256 if (nextBox)
257 return nextBox;
273 nextBox = leafBoxes.nextTextBox(nextRoot, 0);
274 if (nextBox) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 571 const InlineBox* nextBox = box;
573 rightmostBox = nextBox;
574 nextBox = rightmostBox->nextLeafChildIgnoringLineBreak();
575 } while (nextBox && nextBox->bidiLevel() >= box->bidiLevel());
583 const InlineBox* nextBox = box->nextLeafChildIgnoringLineBreak();
584 if ((nextBox && nextBox->bidiLevel() == box->bidiLevel())
589 if (nextBox && nextBox->bidiLevel() > box->bidiLevel())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp 72 InlineTextBox* nextBox = nextTextBox();
73 if (nextBox)
74 nextBox->dirtyLineBoxes();

Completed in 381 milliseconds