HomeSort by relevance Sort by last modified time
    Searched defs:nextTextBox (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.h 58 InlineTextBox* nextTextBox() const { return m_nextTextBox; }
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 528 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
572 InlineTextBox* nextTextBox = 0;
575 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1];
577 nextTextBox = m_textBox->nextTextBox();
578 ASSERT(!nextTextBox || nextTextBox->renderer() == renderer);
602 unsigned nextRunStart = nextTextBox ? nextTextBox->start() : str.length();
605 m_textBox = nextTextBox;
    [all...]
VisibleUnits.cpp 130 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
165 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const InlineTextBox* box)
251 const InlineTextBox* nextBox = leafBoxes.nextTextBox(startBox->root(), textBox);
255 nextBox = leafBoxes.nextTextBox(startBox->root()->nextRootBox(), 0);
273 nextBox = leafBoxes.nextTextBox(nextRoot, 0);
    [all...]

Completed in 870 milliseconds