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 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...]
RenderedPosition.h 77 InlineBox* nextLeafChild() const;
VisiblePosition.cpp 206 nextBox = nextBox->nextLeafChild();
238 while (InlineBox* nextBox = box->nextLeafChild()) {
310 box = box->nextLeafChild();
352 InlineBox* nextBox = box->nextLeafChild();
388 nextBox = nextBox->nextLeafChild();
397 nextBox = nextBox->nextLeafChild();
414 while (InlineBox* nextBox = box->nextLeafChild()) {
VisibleUnits.cpp 746 startBox = startBox->nextLeafChild();
    [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();
RootInlineBox.cpp 94 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
336 for (InlineBox* box = firstBox->nextLeafChild(); box; box = box->nextLeafChild()) {
362 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
384 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
    [all...]
InlineTextBox.h 198 | (expansion() && nextLeafChild() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion);
InlineBox.h 170 InlineBox* nextLeafChild() const;
RenderText.cpp 610 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 649 otherBox = otherBox->nextLeafChild();
773 otherBox = otherBox->nextLeafChild();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 189 for (InlineBox* leaf = firstLeaf; leaf; leaf = leaf->nextLeafChild()) {

Completed in 524 milliseconds