Lines Matching defs:relayoutChildren

1186 void RenderBlock::layoutBlock(bool relayoutChildren, int pageLogicalHeight)
1193 if (!relayoutChildren && simplifiedLayout())
1207 relayoutChildren = true;
1210 checkAndSetRelayoutChildren(&relayoutChildren);
1284 layoutInlineChildren(relayoutChildren, repaintLogicalTop, repaintLogicalBottom);
1286 layoutBlockChildren(relayoutChildren, maxFloatLogicalBottom);
1315 relayoutChildren = true;
1317 layoutPositionedObjects(relayoutChildren || isRoot());
1902 void RenderBlock::layoutBlockChildren(bool relayoutChildren, int& maxFloatLogicalBottom)
1933 RenderObject* childToExclude = layoutSpecialExcludedChild(relayoutChildren);
1950 if (relayoutChildren || ((child->style()->logicalHeight().isPercent() || child->style()->logicalMinHeight().isPercent() || child->style()->logicalMaxHeight().isPercent()) && !isRenderView()))
1953 // If relayoutChildren is set and the child has percentage padding, we also need to invalidate the child's pref widths.
1954 if (relayoutChildren && (child->style()->paddingStart().isPercent() || child->style()->paddingEnd().isPercent()))
2208 void RenderBlock::layoutPositionedObjects(bool relayoutChildren)
2224 if (relayoutChildren || (r->style()->hasStaticBlockPosition(isHorizontalWritingMode()) && r->parent() != this && r->parent()->isBlockFlow()))
2227 // If relayoutChildren is set and we have percentage padding, we also need to invalidate the child's pref widths.
2228 if (relayoutChildren && (r->style()->paddingStart().isPercent() || r->style()->paddingEnd().isPercent()))