Home
last modified time | relevance | path

Searched refs:nextOnLine (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGInlineFlowBox.cpp40 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) { in paintSelectionBackground()
55 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in paint()
63 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) { in calculateBoundaries()
DSVGRootInlineBox.cpp45 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) { in paint()
55 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in paint()
62 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in markDirty()
94 for (InlineBox* child = start->firstChild(); child; child = child->nextOnLine()) { in layoutCharactersInTextBoxes()
125 for (InlineBox* child = start->firstChild(); child; child = child->nextOnLine()) { in layoutChildBoxes()
165 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) { in layoutRootBox()
DSVGTextQuery.cpp90 for (InlineBox* child = flowBox->firstChild(); child; child = child->nextOnLine()) { in collectTextBoxesInFlowBox()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DInlineFlowBox.cpp57 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in ~InlineFlowBox()
66 for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) { in getFlowSpacingLogicalWidth()
96 ASSERT(!child->nextOnLine()); in addToLine()
190 m_firstChild = child->nextOnLine(); in removeChild()
193 if (child->nextOnLine()) in removeChild()
194 child->nextOnLine()->setPrevOnLine(child->prevOnLine()); in removeChild()
196 child->prevOnLine()->setNextOnLine(child->nextOnLine()); in removeChild()
209 next = child->nextOnLine(); in deleteLine()
234 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in extractLine()
247 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in attachLine()
[all …]
DInlineBox.cpp242 else if (nextOnLine()) in nextOnLineExists()
253 for (InlineBox* box = nextOnLine(); box && !leaf; box = box->nextOnLine()) in nextLeafChild()
DInlineBox.h154 InlineBox* nextOnLine() const { return m_next; } in nextOnLine() function
DInlineFlowBox.h97 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in setConstructed()
DRenderBlockLineLayout.cpp138 if (parentBox->isConstructed() || parentBox->nextOnLine()) in parentIsConstructedOrHaveNext()