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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.cpp 106 InlineBox* RenderedPosition::nextLeafChild() const
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() || nextLeafChild()->bidiLevel() < bidiLevelOfRun)
    [all...]
RenderedPosition.h 77 InlineBox* nextLeafChild() const;
VisiblePosition.cpp 196 nextBox = nextBox->nextLeafChild();
228 while (InlineBox* nextBox = box->nextLeafChild()) {
300 box = box->nextLeafChild();
342 InlineBox* nextBox = box->nextLeafChild();
378 nextBox = nextBox->nextLeafChild();
387 nextBox = nextBox->nextLeafChild();
404 while (InlineBox* nextBox = box->nextLeafChild()) {
VisibleUnits.cpp 752 startBox = startBox->nextLeafChild();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 269 InlineBox* InlineBox::nextLeafChild() const
275 leaf = parent()->nextLeafChild();
291 InlineBox* leaf = nextLeafChild();
InlineTextBox.h 185 | (expansion() && nextLeafChild() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion);
RootInlineBox.cpp 98 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
459 for (InlineBox* box = firstBox->nextLeafChild(); box; box = box->nextLeafChild()) {
485 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
507 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
    [all...]
InlineBox.h 168 InlineBox* nextLeafChild() const;
RenderText.cpp 620 if (box->isLineBreak() && !box->prevLeafChild() && box->nextLeafChild() && !box->nextLeafChild()->isLineBreak())
    [all...]
InlineFlowBox.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.cpp 678 otherBox = otherBox->nextLeafChild();
802 otherBox = otherBox->nextLeafChild();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 202 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {

Completed in 6874 milliseconds