Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGInlineFlowBox.cpp37 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) { in paintSelectionBackground()
52 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in paint()
60 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) { in calculateBoundaries()
DSVGRootInlineBox.cpp44 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.cpp58 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in ~InlineFlowBox()
67 for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) { in getFlowSpacingLogicalWidth()
97 ASSERT(!child->nextOnLine()); in addToLine()
191 m_firstChild = child->nextOnLine(); in removeChild()
194 if (child->nextOnLine()) in removeChild()
195 child->nextOnLine()->setPrevOnLine(child->prevOnLine()); in removeChild()
197 child->prevOnLine()->setNextOnLine(child->nextOnLine()); in removeChild()
210 next = child->nextOnLine(); in deleteLine()
235 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in extractLine()
248 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in attachLine()
[all …]
DInlineBox.cpp235 else if (nextOnLine()) in nextOnLineExists()
246 for (InlineBox* box = nextOnLine(); box && !leaf; box = box->nextOnLine()) in nextLeafChild()
DInlineFlowBox.h100 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) in setConstructed()
DInlineBox.h155 InlineBox* nextOnLine() const { return m_next; } in nextOnLine() function
DRenderBlockLineLayout.cpp87 if (parentBox->isConstructed() || parentBox->nextOnLine()) in parentIsConstructedOrHaveNext()
/external/chromium_org/third_party/WebKit/Source/core/paint/
DInlineFlowBoxPainter.cpp80 for (InlineBox* curr = m_inlineFlowBox.firstChild(); curr; curr = curr->nextOnLine()) { in paint()