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 163 InlineBox* prevBox = box->prevLeafChildIgnoringLineBreak();
164 if (!prevBox) {
178 box = prevBox;
180 offset = prevBox->caretRightmostOffset();
187 InlineBox* prevBox = box->prevLeafChild();
190 if (!prevBox) {
199 if (prevBox->bidiLevel() >= level)
202 level = prevBox->bidiLevel();
212 box = prevBox;
220 while (prevBox && !prevBox->renderer().node()
    [all...]
CompositeEditCommand.cpp 748 InlineTextBox* prevBox = 0;
753 while (prevBox || box) {
754 unsigned gapStart = prevBox ? prevBox->start() + prevBox->len() : 0;
771 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 538 const InlineBox* prevBox = box->prevLeafChildIgnoringLineBreak();
539 if ((prevBox && prevBox->bidiLevel() == box->bidiLevel())
543 if (prevBox && prevBox->bidiLevel() > box->bidiLevel()) {
547 leftmostBox = prevBox;
548 prevBox = leftmostBox->prevLeafChildIgnoringLineBreak();
549 } while (prevBox && prevBox->bidiLevel() > box->bidiLevel());
553 if (!prevBox || prevBox->bidiLevel() < box->bidiLevel())
    [all...]

Completed in 320 milliseconds