Lines Matching defs:relayoutChildren

207 void RenderFlexibleBox::layoutBlock(bool relayoutChildren, int /*pageHeight FIXME: Implement */)
211 if (!relayoutChildren && simplifiedLayout())
228 relayoutChildren = true;
231 checkAndSetRelayoutChildren(&relayoutChildren);
248 layoutHorizontalBox(relayoutChildren);
250 layoutVerticalBox(relayoutChildren);
256 relayoutChildren = true;
258 layoutPositionedObjects(relayoutChildren || isRoot());
299 static void gatherFlexChildrenInfo(FlexBoxIterator& iterator, bool relayoutChildren, unsigned int& highestFlexGroup, unsigned int& lowestFlexGroup, bool& haveFlex)
307 if (!relayoutChildren)
321 void RenderFlexibleBox::layoutHorizontalBox(bool relayoutChildren)
336 gatherFlexChildrenInfo(iterator, relayoutChildren, highestFlexGroup, lowestFlexGroup, haveFlex);
354 if (relayoutChildren || (child->isReplaced() && (child->style()->width().isPercent() || child->style()->height().isPercent())))
398 relayoutChildren = false;
511 relayoutChildren = true;
528 relayoutChildren = true;
601 void RenderFlexibleBox::layoutVerticalBox(bool relayoutChildren)
617 gatherFlexChildrenInfo(iterator, relayoutChildren, highestFlexGroup, lowestFlexGroup, haveFlex);
623 applyLineClamp(iterator, relayoutChildren);
637 if (!haveLineClamp && (relayoutChildren || (child->isReplaced() && (child->style()->width().isPercent() || child->style()->height().isPercent()))))
760 relayoutChildren = true;
777 relayoutChildren = true;
846 void RenderFlexibleBox::applyLineClamp(FlexBoxIterator& iterator, bool relayoutChildren)
853 if (relayoutChildren || (child->isReplaced() && (child->style()->width().isPercent() || child->style()->height().isPercent()))