Searched defs:nextTextBox (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.h58 InlineTextBox* nextTextBox() const { return m_nextTextBox; } function in class:blink::InlineTextBox
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp664 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
709 InlineTextBox* nextTextBox = 0; local
712 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1];
714 nextTextBox = m_textBox->nextTextBox();
716 ASSERT(!nextTextBox || nextTextBox->renderer() == renderer);
740 unsigned nextRunStart = nextTextBox ? nextTextBox->start() : str.length();
743 m_textBox = nextTextBox;
[all...]
H A DVisibleUnits.cpp132 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
167 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const InlineTextBox* box) function in class:blink::CachedLogicallyOrderedLeafBoxes
253 const InlineTextBox* nextBox = leafBoxes.nextTextBox(&startBox->root(), textBox);
257 nextBox = leafBoxes.nextTextBox(startBox->root().nextRootBox(), 0);
275 nextBox = leafBoxes.nextTextBox(nextRoot, 0);

Completed in 615 milliseconds