Searched refs:fullLayout (Results 1 – 9 of 9) sorted by relevance
195 static inline void dirtyLineBoxesForRenderer(RenderObject* o, bool fullLayout) in dirtyLineBoxesForRenderer() argument200 toRenderText(o)->dirtyLineBoxes(fullLayout); in dirtyLineBoxesForRenderer()202 toRenderInline(o)->dirtyLineBoxes(fullLayout); in dirtyLineBoxesForRenderer()742 bool fullLayout = !firstLineBox() || selfNeedsLayout() || relayoutChildren; in layoutInlineChildren() local743 if (fullLayout) in layoutInlineChildren()820 else if (fullLayout || o->needsLayout()) { in layoutInlineChildren()822 toRenderBox(o)->dirtyLineBoxes(fullLayout); in layoutInlineChildren()829 else if (fullLayout || o->needsLayout()) { in layoutInlineChildren()831 toRenderBox(o)->dirtyLineBoxes(fullLayout); in layoutInlineChildren()838 if (fullLayout || o->selfNeedsLayout()) in layoutInlineChildren()[all …]
57 void dirtyLineBoxes(bool fullLayout);
61 void dirtyLineBoxes(bool fullLayout);
267 void dirtyLineBoxes(bool fullLayout);
1246 void RenderText::dirtyLineBoxes(bool fullLayout) in dirtyLineBoxes() argument1248 if (fullLayout) in dirtyLineBoxes()
1230 void RenderInline::dirtyLineBoxes(bool fullLayout) in dirtyLineBoxes() argument1232 if (fullLayout) { in dirtyLineBoxes()
494 …RootInlineBox* determineStartPosition(bool& firstLine, bool& fullLayout, bool& previousLineBrokeCl…
1316 void RenderBox::dirtyLineBoxes(bool fullLayout) in dirtyLineBoxes() argument1319 if (fullLayout) { in dirtyLineBoxes()
14818 …The 'fullLayout' flag in RenderBlock::layoutInlineChildren() is pretty vague, hopefully this will …