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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 153 InlineBox* prevBox = box->prevLeafChildIgnoringLineBreak();
154 if (!prevBox) {
168 box = prevBox;
170 offset = prevBox->caretRightmostOffset();
177 InlineBox* prevBox = box->prevLeafChild();
180 if (!prevBox) {
189 if (prevBox->bidiLevel() >= level)
192 level = prevBox->bidiLevel();
202 box = prevBox;
210 while (prevBox && !prevBox->renderer()->node()
    [all...]
CompositeEditCommand.cpp 751 InlineTextBox* prevBox = 0;
756 while (prevBox || box) {
757 unsigned gapStart = prevBox ? prevBox->start() + prevBox->len() : 0;
775 prevBox = box;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 548 const InlineBox* prevBox = box->prevLeafChildIgnoringLineBreak();
549 if ((prevBox && prevBox->bidiLevel() == box->bidiLevel())
553 if (prevBox && prevBox->bidiLevel() > box->bidiLevel()) {
557 leftmostBox = prevBox;
558 prevBox = leftmostBox->prevLeafChildIgnoringLineBreak();
559 } while (prevBox && prevBox->bidiLevel() > box->bidiLevel());
563 if (!prevBox || prevBox->bidiLevel() < box->bidiLevel())
    [all...]

Completed in 36 milliseconds