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);
67 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren);
RenderMultiColumnBlock.cpp 82 bool relayoutChildren = RenderBlock::updateLogicalWidthAndColumnWidth();
86 relayoutChildren = true;
87 return relayoutChildren;
149 RenderObject* RenderMultiColumnBlock::layoutSpecialExcludedChild(bool relayoutChildren)
162 if (relayoutChildren || childBox->needsLayout()) {
172 if (relayoutChildren)
RenderFieldset.h 42 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren);
RenderLazyBlock.h 64 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight) OVERRIDE;
66 void layoutChildren(bool relayoutChildren);
RenderLazyBlock.cpp 142 void RenderLazyBlock::layoutChildren(bool relayoutChildren)
164 updateBlockChildDirtyBitsBeforeLayout(relayoutChildren, child);
166 if (relayoutChildren)
208 void RenderLazyBlock::layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight)
239 layoutChildren(relayoutChildren || updateLogicalWidthAndColumnWidth());
RenderDeprecatedFlexibleBox.cpp 253 void RenderDeprecatedFlexibleBox::layoutBlock(bool relayoutChildren, LayoutUnit)
257 if (!relayoutChildren && simplifiedLayout())
266 relayoutChildren = true;
268 relayoutChildren = true;
278 relayoutChildren = true;
287 layoutHorizontalBox(relayoutChildren);
289 layoutVerticalBox(relayoutChildren);
295 relayoutChildren = true;
297 layoutPositionedObjects(relayoutChildren || isRoot());
340 static void gatherFlexChildrenInfo(FlexBoxIterator& iterator, bool relayoutChildren, unsigned int& highestFlexGroup, unsigned int& lowestFlexGroup, bool& haveFlex
    [all...]
RenderRubyRun.h 55 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren);
RenderTextControlMultiLine.h 48 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren);
RenderTextControlMultiLine.cpp 95 RenderObject* RenderTextControlMultiLine::layoutSpecialExcludedChild(bool relayoutChildren)
97 RenderObject* placeholderRenderer = RenderTextControl::layoutSpecialExcludedChild(relayoutChildren);
RenderMarquee.h 89 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE FINAL;
RenderMultiColumnBlock.h 54 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren) OVERRIDE;
RenderTextControl.h 65 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren);
RenderFlexibleBox.h 51 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE FINAL;
123 void layoutFlexItems(bool relayoutChildren, Vector<LineContext>&);
150 void layoutAndPlaceChildren(LayoutUnit& crossAxisOffset, const OrderedFlexItemList&, const Vector<LayoutUnit>& childSizes, LayoutUnit availableFreeSpace, bool relayoutChildren, Vector<LineContext>&);
RenderFlexibleBox.cpp 236 void RenderFlexibleBox::layoutBlock(bool relayoutChildren, LayoutUnit)
240 if (!relayoutChildren && simplifiedLayout())
246 relayoutChildren = true;
256 relayoutChildren = true;
258 relayoutChildren = true;
270 layoutFlexItems(relayoutChildren, lineContexts);
278 relayoutChildren = true;
280 layoutPositionedObjects(relayoutChildren || isRoot());
672 void RenderFlexibleBox::layoutFlexItems(bool relayoutChildren, Vector<LineContext>& lineContexts)
694 layoutAndPlaceChildren(crossAxisOffset, orderedChildren, childSizes, availableFreeSpace, relayoutChildren, lineContexts)
    [all...]
RenderFieldset.cpp 63 RenderObject* RenderFieldset::layoutSpecialExcludedChild(bool relayoutChildren)
67 if (relayoutChildren)
RenderMarquee.cpp 277 void RenderMarquee::layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight)
279 RenderBlock::layoutBlock(relayoutChildren, pageLogicalHeight);
RenderRubyRun.cpp 217 RenderObject* RenderRubyRun::layoutSpecialExcludedChild(bool relayoutChildren)
224 if (relayoutChildren)
RenderTextControl.cpp 276 RenderObject* RenderTextControl::layoutSpecialExcludedChild(bool relayoutChildren)
282 if (relayoutChildren) {
RenderGrid.h 52 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE;
RenderRegion.h 166 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0) OVERRIDE;
RenderGrid.cpp 228 void RenderGrid::layoutBlock(bool relayoutChildren, LayoutUnit)
232 if (!relayoutChildren && simplifiedLayout())
243 relayoutChildren = true;
245 relayoutChildren = true;
258 relayoutChildren = true;
260 layoutPositionedObjects(relayoutChildren || isRoot());
    [all...]
RenderRegion.cpp 278 void RenderRegion::layoutBlock(bool relayoutChildren, LayoutUnit)
281 RenderBlock::layoutBlock(relayoutChildren);
RenderBlock.h 114 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0);
496 void layoutPositionedObjects(bool relayoutChildren, bool fixedPositionObjectsOnly = false);
581 void updateBlockChildDirtyBitsBeforeLayout(bool relayoutChildren, RenderBox*);
    [all...]
RenderView.cpp 261 bool relayoutChildren = !shouldUsePrintingLayout() && (!m_frameView || width() != viewWidth() || height() != viewHeight());
262 if (relayoutChildren) {
    [all...]
RenderBlock.cpp 398 // end up being the same. We keep track of this change so in layoutBlock, we can know to set relayoutChildren=true.
    [all...]

Completed in 386 milliseconds

1 2