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

/external/webkit/Source/WebCore/rendering/
H A DRenderFieldset.cpp67 RenderObject* RenderFieldset::layoutSpecialExcludedChild(bool relayoutChildren) argument
71 if (relayoutChildren)
H A DRenderRubyRun.cpp214 RenderObject* RenderRubyRun::layoutSpecialExcludedChild(bool relayoutChildren) argument
220 if (relayoutChildren)
H A DRenderFlexibleBox.cpp207 void RenderFlexibleBox::layoutBlock(bool relayoutChildren, int /*pageHeight FIXME: Implement */) argument
211 if (!relayoutChildren && simplifiedLayout())
228 relayoutChildren = true;
231 checkAndSetRelayoutChildren(&relayoutChildren);
248 layoutHorizontalBox(relayoutChildren);
250 layoutVerticalBox(relayoutChildren);
256 relayoutChildren = true;
258 layoutPositionedObjects(relayoutChildren || isRoot());
299 static void gatherFlexChildrenInfo(FlexBoxIterator& iterator, bool relayoutChildren, unsigned int& highestFlexGroup, unsigned int& lowestFlexGroup, bool& haveFlex) argument
307 if (!relayoutChildren)
321 layoutHorizontalBox(bool relayoutChildren) argument
601 layoutVerticalBox(bool relayoutChildren) argument
846 applyLineClamp(FlexBoxIterator& iterator, bool relayoutChildren) argument
[all...]
H A DRenderTable.cpp302 bool relayoutChildren = false; local
309 if (!checkAndSetRelayoutChildren(&relayoutChildren)
356 if (relayoutChildren) {
H A DRenderTextControlSingleLine.cpp258 bool relayoutChildren = oldHeight != height() || oldWidth != width(); local
261 checkAndSetRelayoutChildren(&relayoutChildren);
273 relayoutChildren = true;
282 relayoutChildren = true;
288 relayoutChildren = true;
292 RenderBlock::layoutBlock(relayoutChildren);
H A DRenderView.cpp118 bool relayoutChildren = !printing() && (!m_frameView || width() != viewWidth() || height() != viewHeight()); local
119 if (relayoutChildren) {
H A DRenderBlockLineLayout.cpp732 void RenderBlock::layoutInlineChildren(bool relayoutChildren, int& repaintLogicalTop, int& repaintLogicalBottom) argument
742 bool fullLayout = !firstLineBox() || selfNeedsLayout() || relayoutChildren;
802 if (relayoutChildren || o->style()->width().isPercent() || o->style()->height().isPercent())
805 // If relayoutChildren is set and we have percentage padding, we also need to invalidate the child's pref widths.
806 if (relayoutChildren && (o->style()->paddingStart().isPercent() || o->style()->paddingEnd().isPercent()))
H A DRenderBox.cpp1536 bool RenderBox::checkAndSetRelayoutChildren(bool* relayoutChildren) { argument
1539 *relayoutChildren = true;
H A DRenderBlock.cpp1186 void RenderBlock::layoutBlock(bool relayoutChildren, int pageLogicalHeight) argument
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) argument
1933 RenderObject* childToExclude = layoutSpecialExcludedChild(relayoutChildren);
2208 layoutPositionedObjects(bool relayoutChildren) argument
[all...]

Completed in 110 milliseconds