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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.h59 InlineTextBox* nextTextBox() const { return m_nextTextBox; } function in class:WebCore::InlineTextBox
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp602 for (InlineTextBox* textBox = renderer->firstTextBox(); textBox; textBox = textBox->nextTextBox()) {
647 InlineTextBox* nextTextBox = 0; local
650 nextTextBox = m_sortedTextBoxes[m_sortedTextBoxesPosition + 1];
652 nextTextBox = m_textBox->nextTextBox();
654 ASSERT(!nextTextBox || nextTextBox->renderer() == renderer);
678 unsigned nextRunStart = nextTextBox ? nextTextBox->start() : str.length();
681 m_textBox = nextTextBox;
[all...]
H A DVisibleUnits.cpp130 const InlineTextBox* nextTextBox(const RootInlineBox*, const InlineTextBox*);
165 const InlineTextBox* CachedLogicallyOrderedLeafBoxes::nextTextBox(const RootInlineBox* root, const InlineTextBox* box) function in class:WebCore::CachedLogicallyOrderedLeafBoxes
251 const InlineTextBox* nextBox = leafBoxes.nextTextBox(startBox->root(), textBox);
255 nextBox = leafBoxes.nextTextBox(startBox->root()->nextRootBox(), 0);
273 nextBox = leafBoxes.nextTextBox(nextRoot, 0);

Completed in 77 milliseconds