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 207 nextBox = nextBox->nextLeafChild();
239 while (InlineBox* nextBox = box->nextLeafChild()) {
311 box = box->nextLeafChild();
353 InlineBox* nextBox = box->nextLeafChild();
389 nextBox = nextBox->nextLeafChild();
398 nextBox = nextBox->nextLeafChild();
415 while (InlineBox* nextBox = box->nextLeafChild()) {
VisibleUnits.cpp 753 startBox = startBox->nextLeafChild();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineBox.cpp 249 InlineBox* InlineBox::nextLeafChild() const
255 leaf = parent()->nextLeafChild();
271 InlineBox* leaf = nextLeafChild();
InlineTextBox.h 192 | (expansion() && nextLeafChild() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion);
RootInlineBox.cpp 94 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
453 for (InlineBox* box = firstBox->nextLeafChild(); box; box = box->nextLeafChild()) {
479 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
501 for (InlineBox* box = firstLeafChild(); box; box = box->nextLeafChild()) {
    [all...]
InlineBox.h 167 InlineBox* nextLeafChild() const;
RenderText.cpp 625 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 674 otherBox = otherBox->nextLeafChild();
798 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 4301 milliseconds