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

  /external/webkit/WebCore/rendering/
InlineTextBox.h 50 InlineTextBox* nextTextBox() const { return static_cast<InlineTextBox*>(nextLineBox()); }
  /external/webkit/WebCore/editing/
TextIterator.cpp 468 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
508 InlineTextBox* nextTextBox = 0;
511 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1];
513 nextTextBox = m_textBox->nextTextBox();
537 int nextRunStart = nextTextBox ? nextTextBox->start() : str.length();
540 m_textBox = nextTextBox;
546 m_textBox = nextTextBox;
    [all...]

Completed in 142 milliseconds