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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.cpp 107 InlineBox* RenderedPosition::nextLeafChild() const
118 || (atRightmostOffsetInBox() && other.atLeftmostOffsetInBox() && nextLeafChild() == other.m_inlineBox);
129 InlineBox* box = atRightmostOffsetInBox() ? nextLeafChild() : m_inlineBox;
180 return nextLeafChild() && m_inlineBox->bidiLevel() < nextLeafChild()->bidiLevel();
181 return nextLeafChild() && m_inlineBox->bidiLevel() < bidiLevelOfRun && nextLeafChild()->bidiLevel() >= bidiLevelOfRun;
194 return !nextLeafChild() || nextLeafChild()->bidiLevel() < m_inlineBox->bidiLevel();
195 return m_inlineBox->bidiLevel() >= bidiLevelOfRun && (!nextLeafChild() || nextLeafChild()->bidiLevel() < bidiLevelOfRun)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 243 InlineBox* InlineBox::nextLeafChild() const
249 leaf = parent()->nextLeafChild();
265 InlineBox* leaf = nextLeafChild();

Completed in 866 milliseconds