HomeSort by relevance Sort by last modified time
    Searched refs:relayoutChildren (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDeprecatedFlexibleBox.h 43 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageHeight = 0);
44 void layoutHorizontalBox(bool relayoutChildren);
45 void layoutVerticalBox(bool relayoutChildren);
69 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren);
RenderFieldset.h 42 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&);
RenderMultiColumnBlock.cpp 82 bool relayoutChildren = RenderBlock::updateLogicalWidthAndColumnWidth();
86 relayoutChildren = true;
87 return relayoutChildren;
149 RenderObject* RenderMultiColumnBlock::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope)
162 if (relayoutChildren || childBox->needsLayout()) {
172 if (relayoutChildren)
RenderTextControlMultiLine.h 49 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&);
RenderDeprecatedFlexibleBox.cpp 253 void RenderDeprecatedFlexibleBox::layoutBlock(bool relayoutChildren, LayoutUnit)
257 if (!relayoutChildren && simplifiedLayout())
266 relayoutChildren = true;
268 relayoutChildren = true;
278 relayoutChildren = true;
285 layoutHorizontalBox(relayoutChildren);
287 layoutVerticalBox(relayoutChildren);
293 relayoutChildren = true;
295 layoutPositionedObjects(relayoutChildren || isRoot());
320 static void gatherFlexChildrenInfo(FlexBoxIterator& iterator, bool relayoutChildren, unsigned int& highestFlexGroup, unsigned int& lowestFlexGroup, bool& haveFlex
    [all...]
RenderMarquee.h 92 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE FINAL;
RenderMultiColumnBlock.h 54 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&) OVERRIDE;
RenderRubyRun.h 55 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&);
RenderTextControlMultiLine.cpp 91 RenderObject* RenderTextControlMultiLine::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope)
93 RenderObject* placeholderRenderer = RenderTextControl::layoutSpecialExcludedChild(relayoutChildren, layoutScope);
RenderFlexibleBox.h 51 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE FINAL;
125 void layoutFlexItems(bool relayoutChildren, Vector<LineContext>&);
152 void layoutAndPlaceChildren(LayoutUnit& crossAxisOffset, const OrderedFlexItemList&, const Vector<LayoutUnit>& childSizes, LayoutUnit availableFreeSpace, bool relayoutChildren, Vector<LineContext>&);
RenderTextControl.h 64 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&);
RenderFlexibleBox.cpp 221 void RenderFlexibleBox::layoutBlock(bool relayoutChildren, LayoutUnit)
225 if (!relayoutChildren && simplifiedLayout())
231 relayoutChildren = true;
241 relayoutChildren = true;
243 relayoutChildren = true;
255 layoutFlexItems(relayoutChildren, lineContexts);
263 relayoutChildren = true;
265 layoutPositionedObjects(relayoutChildren || isRoot());
656 void RenderFlexibleBox::layoutFlexItems(bool relayoutChildren, Vector<LineContext>& lineContexts)
678 layoutAndPlaceChildren(crossAxisOffset, orderedChildren, childSizes, availableFreeSpace, relayoutChildren, lineContexts)
    [all...]
RenderFieldset.cpp 63 RenderObject* RenderFieldset::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope&)
67 if (relayoutChildren)
RenderMarquee.cpp 262 void RenderMarquee::layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight)
264 RenderBlockFlow::layoutBlock(relayoutChildren, pageLogicalHeight);
RenderRubyRun.cpp 218 RenderObject* RenderRubyRun::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope)
224 if (relayoutChildren)
RenderTextControl.cpp 287 RenderObject* RenderTextControl::layoutSpecialExcludedChild(bool relayoutChildren, SubtreeLayoutScope& layoutScope)
293 if (relayoutChildren)
RenderGrid.h 50 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE;
RenderRegion.h 168 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE;
RenderBlockFlow.cpp 240 void RenderBlockFlow::layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight)
247 if (!relayoutChildren && simplifiedLayout())
253 relayoutChildren = true;
272 relayoutChildren = true;
274 relayoutChildren = true;
275 if (!relayoutChildren && isRenderNamedFlowFragmentContainer())
276 relayoutChildren = true;
305 layoutInlineChildren(relayoutChildren, m_repaintLogicalTop, m_repaintLogicalBottom);
307 layoutBlockChildren(relayoutChildren, maxFloatLogicalBottom, layoutScope);
350 relayoutChildren = true
    [all...]
RenderBlockFlow.h 60 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE;
179 void layoutBlockChildren(bool relayoutChildren, LayoutUnit& maxFloatLogicalBottom, SubtreeLayoutScope&);
180 void layoutInlineChildren(bool relayoutChildren, LayoutUnit& repaintLogicalTop, LayoutUnit& repaintLogicalBottom);
RenderGrid.cpp 250 void RenderGrid::layoutBlock(bool relayoutChildren, LayoutUnit)
254 if (!relayoutChildren && simplifiedLayout())
265 relayoutChildren = true;
267 relayoutChildren = true;
280 relayoutChildren = true;
282 layoutPositionedObjects(relayoutChildren || isRoot());
    [all...]
RenderRegion.cpp 288 void RenderRegion::layoutBlock(bool relayoutChildren, LayoutUnit)
290 RenderBlockFlow::layoutBlock(relayoutChildren);
RenderBlock.h 111 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0);
400 void layoutPositionedObjects(bool relayoutChildren, bool fixedPositionObjectsOnly = false);
471 void updateBlockChildDirtyBitsBeforeLayout(bool relayoutChildren, RenderBox*);
520 virtual RenderObject* layoutSpecialExcludedChild(bool /*relayoutChildren*/, SubtreeLayoutScope&) { return 0; }
    [all...]
RenderBlockLineLayout.cpp     [all...]
RenderView.cpp 313 bool relayoutChildren = !shouldUsePrintingLayout() && (!m_frameView || width() != viewWidth() || height() != viewHeight());
314 if (relayoutChildren) {
    [all...]

Completed in 947 milliseconds

1 2