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 105 InlineBox* RenderedPosition::nextLeafChild() const
116 || (atRightmostOffsetInBox() && other.atLeftmostOffsetInBox() && nextLeafChild() == other.m_inlineBox);
127 InlineBox* box = atRightmostOffsetInBox() ? nextLeafChild() : m_inlineBox;
178 return nextLeafChild() && m_inlineBox->bidiLevel() < nextLeafChild()->bidiLevel();
179 return nextLeafChild() && m_inlineBox->bidiLevel() < bidiLevelOfRun && nextLeafChild()->bidiLevel() >= bidiLevelOfRun;
192 return !nextLeafChild() || nextLeafChild()->bidiLevel() < m_inlineBox->bidiLevel();
193 return m_inlineBox->bidiLevel() >= bidiLevelOfRun && (!nextLeafChild() || nextLeafChild()->bidiLevel() < bidiLevelOfRun)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 250 InlineBox* InlineBox::nextLeafChild() const
256 leaf = parent()->nextLeafChild();
272 InlineBox* leaf = nextLeafChild();

Completed in 56 milliseconds