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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 194 InlineBox* nextBox = box;
196 nextBox = nextBox->nextLeafChild();
197 } while (nextBox && nextBox->bidiLevel() > level);
199 if (nextBox && nextBox->bidiLevel() == level)
228 while (InlineBox* nextBox = box->nextLeafChild()) {
229 if (nextBox->bidiLevel() < level)
231 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 566 const InlineBox* nextBox = box;
568 rightmostBox = nextBox;
569 nextBox = rightmostBox->nextLeafChildIgnoringLineBreak();
570 } while (nextBox && nextBox->bidiLevel() >= box->bidiLevel());
578 const InlineBox* nextBox = box->nextLeafChildIgnoringLineBreak();
579 if ((nextBox && nextBox->bidiLevel() == box->bidiLevel())
584 if (nextBox && nextBox->bidiLevel() > box->bidiLevel())
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
tile_view.js 262 var nextBox = this.boxes_[this.loadedCount_];
264 nextBox, this.onBoxLoaded.bind(this, nextBox));
280 var nextBox = this.boxes_[nextIndex];
282 nextBox, this.onBoxLoaded.bind(this, nextBox));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGInlineTextBox.cpp 71 InlineTextBox* nextBox = nextTextBox();
72 if (nextBox)
73 nextBox->dirtyLineBoxes();

Completed in 79 milliseconds