Searched defs:nextLeafChild (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRenderedPosition.cpp106 InlineBox* RenderedPosition::nextLeafChild() const function in class:WebCore::RenderedPosition
117 || (atRightmostOffsetInBox() && other.atLeftmostOffsetInBox() && nextLeafChild() == other.m_inlineBox);
128 InlineBox* box = atRightmostOffsetInBox() ? nextLeafChild() : m_inlineBox;
179 return nextLeafChild() && m_inlineBox->bidiLevel() < nextLeafChild()->bidiLevel();
180 return nextLeafChild() && m_inlineBox->bidiLevel() < bidiLevelOfRun && nextLeafChild()->bidiLevel() >= bidiLevelOfRun;
193 return !nextLeafChild() || nextLeafChild()->bidiLevel() < m_inlineBox->bidiLevel();
194 return m_inlineBox->bidiLevel() >= bidiLevelOfRun && (!nextLeafChild() || nextLeafChil
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineBox.cpp269 InlineBox* InlineBox::nextLeafChild() const function in class:WebCore::InlineBox
275 leaf = parent()->nextLeafChild();
291 InlineBox* leaf = nextLeafChild();

Completed in 256 milliseconds