Searched defs:relayoutChildren (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderFieldset.cpp66 RenderObject* RenderFieldset::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&) argument
70 if (relayoutChildren)
H A DRenderRegion.cpp108 void RenderRegion::layoutBlock(bool relayoutChildren) argument
110 RenderBlockFlow::layoutBlock(relayoutChildren);
H A DRenderTextControlMultiLine.cpp89 RenderObject* RenderTextControlMultiLine::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope) argument
91 RenderObject* placeholderRenderer = RenderTextControl::layoutSpecialExcludedChild(relayoutChildren, layoutScope);
H A DRenderMarquee.cpp264 void RenderMarquee::layoutBlock(bool relayoutChildren) argument
266 RenderBlockFlow::layoutBlock(relayoutChildren);
H A DRenderMultiColumnFlowThread.cpp148 void RenderMultiColumnFlowThread::layoutColumns(bool relayoutChildren, SubtreeLayoutScope& layoutScope) argument
150 if (relayoutChildren)
H A DRenderRubyRun.cpp200 RenderObject* RenderRubyRun::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope) argument
206 if (relayoutChildren)
H A DRenderTextControl.cpp292 RenderObject* RenderTextControl::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope) argument
298 if (relayoutChildren)
H A DRenderDeprecatedFlexibleBox.cpp247 void RenderDeprecatedFlexibleBox::layoutBlock(bool relayoutChildren) argument
251 if (!relayoutChildren && simplifiedLayout())
268 relayoutChildren = true;
275 layoutHorizontalBox(relayoutChildren);
277 layoutVerticalBox(relayoutChildren);
283 relayoutChildren = true;
285 layoutPositionedObjects(relayoutChildren || isDocumentElement());
304 static void gatherFlexChildrenInfo(FlexBoxIterator& iterator, bool relayoutChildren, unsigned int& highestFlexGroup, unsigned int& lowestFlexGroup, bool& haveFlex) argument
312 if (!relayoutChildren)
326 void RenderDeprecatedFlexibleBox::layoutHorizontalBox(bool relayoutChildren) argument
616 layoutVerticalBox(bool relayoutChildren) argument
865 applyLineClamp(FlexBoxIterator& iterator, bool relayoutChildren) argument
[all...]
H A DRenderView.cpp201 bool relayoutChildren = !shouldUsePrintingLayout() && (!m_frameView || width() != viewWidth() || height() != viewHeight()); local
202 if (relayoutChildren) {
H A DRenderFlexibleBox.cpp225 void RenderFlexibleBox::layoutBlock(bool relayoutChildren) argument
229 if (!relayoutChildren && simplifiedLayout())
233 relayoutChildren = true;
251 layoutFlexItems(relayoutChildren);
256 relayoutChildren = true;
258 layoutPositionedObjects(relayoutChildren || isDocumentElement());
610 LayoutUnit RenderFlexibleBox::preferredMainAxisContentExtentForChild(RenderBox& child, bool hasInfiniteLineLength, bool relayoutChildren) argument
621 if (child.needsLayout() || relayoutChildren) {
637 void RenderFlexibleBox::layoutFlexItems(bool relayoutChildren) argument
651 while (computeNextFlexLine(orderedChildren, sumFlexBaseSize, totalFlexGrow, totalWeightedFlexShrink, sumHypotheticalMainSize, hasInfiniteLineLength, relayoutChildren)) {
857 computeNextFlexLine(OrderedFlexItemList& orderedChildren, LayoutUnit& sumFlexBaseSize, double& totalFlexGrow, double& totalWeightedFlexShrink, LayoutUnit& sumHypotheticalMainSize, bool& hasInfiniteLineLength, bool relayoutChildren) argument
1066 layoutAndPlaceChildren(LayoutUnit& crossAxisOffset, const OrderedFlexItemList& children, const Vector<LayoutUnit, 16>& childSizes, LayoutUnit availableFreeSpace, bool relayoutChildren, Vector<LineContext>& lineContexts, bool hasInfiniteLineLength) argument
[all...]
H A DRenderGrid.cpp327 void RenderGrid::layoutBlock(bool relayoutChildren) argument
331 if (!relayoutChildren && simplifiedLayout())
351 relayoutChildren = true;
353 layoutPositionedObjects(relayoutChildren || isDocumentElement());
H A DRenderBlockLineLayout.cpp1503 void RenderBlockFlow::layoutInlineChildren(bool relayoutChildren, LayoutUnit& paintInvalidationLogicalTop, LayoutUnit& paintInvalidationLogicalBottom, LayoutUnit afterEdge) argument
1510 bool isFullLayout = !firstLineBox() || selfNeedsLayout() || relayoutChildren || clearLinesForPagination;
1552 updateBlockChildDirtyBitsBeforeLayout(relayoutChildren, box);
H A DRenderBlockFlow.cpp187 RenderObject* RenderBlockFlow::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope) argument
193 flowThread->layoutColumns(relayoutChildren, layoutScope);
200 bool relayoutChildren = RenderBlock::updateLogicalWidthAndColumnWidth(); local
205 return relayoutChildren;
340 void RenderBlockFlow::layoutBlock(bool relayoutChildren) argument
350 if (!relayoutChildren && simplifiedLayout())
362 done = layoutBlockFlow(relayoutChildren, pageLogicalHeight, layoutScope);
393 inline bool RenderBlockFlow::layoutBlockFlow(bool relayoutChildren, LayoutUnit &pageLogicalHeight, SubtreeLayoutScope& layoutScope) argument
397 relayoutChildren |= logicalWidthChanged;
405 relayoutChildren
1027 layoutBlockChildren(bool relayoutChildren, SubtreeLayoutScope& layoutScope, LayoutUnit beforeEdge, LayoutUnit afterEdge) argument
[all...]
H A DRenderBlock.cpp366 // end up being the same. We keep track of this change so in layoutBlock, we can know to set relayoutChildren=true.
1527 void RenderBlock::updateBlockChildDirtyBitsBeforeLayout(bool relayoutChildren, RenderBox* child) argument
1531 if (relayoutChildren || (child->hasRelativeLogicalHeight() && !isRenderView()))
1534 // If relayoutChildren is set and the child has percentage padding or an embedded content box, we also need to invalidate the childs pref widths.
1535 if (relayoutChildren && child->needsPreferredWidthsRecalculation())
1668 void RenderBlock::layoutPositionedObjects(bool relayoutChildren, PositionedLayoutBehavior info) argument
1699 if (relayoutChildren || (r->style()->hasStaticBlockPosition(isHorizontalWritingMode()) && r->parent() != this))
1702 // If relayoutChildren is set and the child has percentage padding or an embedded content box, we also need to invalidate the childs pref widths.
1703 if (relayoutChildren && r->needsPreferredWidthsRecalculation())

Completed in 298 milliseconds