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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.cpp 99 InlineBox* RenderedPosition::prevLeafChild() const
116 || (atLeftmostOffsetInBox() && other.atRightmostOffsetInBox() && prevLeafChild() == other.m_inlineBox)
122 InlineBox* box = atLeftmostOffsetInBox() ? prevLeafChild() : m_inlineBox;
173 return !prevLeafChild() || prevLeafChild()->bidiLevel() < m_inlineBox->bidiLevel();
174 return m_inlineBox->bidiLevel() >= bidiLevelOfRun && (!prevLeafChild() || prevLeafChild()->bidiLevel() < bidiLevelOfRun);
199 return prevLeafChild() && m_inlineBox->bidiLevel() < prevLeafChild()->bidiLevel();
200 return prevLeafChild() && m_inlineBox->bidiLevel() < bidiLevelOfRun && prevLeafChild()->bidiLevel() >= bidiLevelOfRun
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 279 InlineBox* InlineBox::prevLeafChild() const
285 leaf = parent()->prevLeafChild();
299 InlineBox* leaf = prevLeafChild();

Completed in 186 milliseconds