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 204 InlineBox* nextBox = box;
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;
    [all...]
VisibleUnits.cpp 174 // 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);
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) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 556 const InlineBox* nextBox = box;
558 rightmostBox = nextBox;
559 nextBox = rightmostBox->nextLeafChildIgnoringLineBreak();
560 } while (nextBox && nextBox->bidiLevel() >= box->bidiLevel());
568 const InlineBox* nextBox = box->nextLeafChildIgnoringLineBreak();
569 if ((nextBox && nextBox->bidiLevel() == box->bidiLevel())
574 if (nextBox && nextBox->bidiLevel() > box->bidiLevel())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp 74 InlineTextBox* nextBox = nextTextBox();
75 if (nextBox)
76 nextBox->dirtyLineBoxes();

Completed in 214 milliseconds