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

  /external/webkit/WebCore/rendering/
RenderFlexibleBox.h 41 virtual void layoutBlock(bool relayoutChildren);
42 void layoutHorizontalBox(bool relayoutChildren);
43 void layoutVerticalBox(bool relayoutChildren);
RenderFieldset.h 41 virtual RenderObject* layoutLegend(bool relayoutChildren);
RenderFlexibleBox.cpp 209 void RenderFlexibleBox::layoutBlock(bool relayoutChildren)
213 if (!relayoutChildren && layoutOnlyPositionedObjects())
234 relayoutChildren = true;
241 relayoutChildren = true;
258 layoutHorizontalBox(relayoutChildren);
260 layoutVerticalBox(relayoutChildren);
265 relayoutChildren = true;
267 layoutPositionedObjects(relayoutChildren || isRoot());
309 static void gatherFlexChildrenInfo(FlexBoxIterator& iterator, bool relayoutChildren, unsigned int& highestFlexGroup, unsigned int& lowestFlexGroup, bool& haveFlex)
318 if (!relayoutChildren)
    [all...]
RenderBlock.h 72 virtual void layoutBlock(bool relayoutChildren);
169 void layoutPositionedObjects(bool relayoutChildren);
224 void layoutBlockChildren(bool relayoutChildren, int& maxFloatBottom);
225 void layoutInlineChildren(bool relayoutChildren, int& repaintTop, int& repaintBottom);
236 virtual RenderObject* layoutLegend(bool /*relayoutChildren*/) { return 0; }
RenderFieldset.cpp 65 RenderObject* RenderFieldset::layoutLegend(bool relayoutChildren)
69 if (relayoutChildren)
RenderTextControlSingleLine.cpp 206 bool relayoutChildren = oldHeight != height() || oldWidth != width();
211 relayoutChildren = true;
224 relayoutChildren = true;
233 relayoutChildren = true;
239 relayoutChildren = true;
243 RenderBlock::layoutBlock(relayoutChildren);
RenderView.cpp 118 bool relayoutChildren = !printing() && (!m_frameView || width() != viewWidth() || height() != viewHeight());
119 if (relayoutChildren) {
RenderBlock.cpp 676 void RenderBlock::layoutBlock(bool relayoutChildren)
683 if (!relayoutChildren && layoutOnlyPositionedObjects())
702 relayoutChildren = true;
709 relayoutChildren = true;
754 layoutInlineChildren(relayoutChildren, repaintTop, repaintBottom);
756 layoutBlockChildren(relayoutChildren, maxFloatBottom);
787 relayoutChildren = true;
806 layoutPositionedObjects(relayoutChildren || isRoot());
    [all...]
RenderTable.cpp 273 bool relayoutChildren = false;
283 relayoutChildren = true;
331 if (relayoutChildren) {
    [all...]
RenderBlockLineLayout.cpp 533 void RenderBlock::layoutInlineChildren(bool relayoutChildren, int& repaintTop, int& repaintBottom)
544 bool fullLayout = !firstLineBox() || selfNeedsLayout() || relayoutChildren;
601 if (relayoutChildren || o->style()->width().isPercent() || o->style()->height().isPercent())
604 // If relayoutChildren is set and we have percentage padding, we also need to invalidate the child's pref widths.
605 if (relayoutChildren && (o->style()->paddingLeft().isPercent() || o->style()->paddingRight().isPercent()))
    [all...]

Completed in 73 milliseconds