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 59 InlineTextBox* nextTextBox() const { return m_nextTextBox; }
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 649 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
694 InlineTextBox* nextTextBox = 0;
697 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1];
699 nextTextBox = m_textBox->nextTextBox();
701 ASSERT(!nextTextBox || nextTextBox->renderer() == renderer);
725 unsigned nextRunStart = nextTextBox ? nextTextBox->start() : str.length();
728 m_textBox = nextTextBox;
    [all...]
VisibleUnits.cpp 132 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
167 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const InlineTextBox* box)
253 const InlineTextBox* nextBox = leafBoxes.nextTextBox(&startBox->root(), textBox);
257 nextBox = leafBoxes.nextTextBox(startBox->root().nextRootBox(), 0);
275 nextBox = leafBoxes.nextTextBox(nextRoot, 0);
    [all...]

Completed in 111 milliseconds