Searched defs:layouter (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCell.cpp176 void RenderTableCell::computeIntrinsicPadding(int rowHeight, SubtreeLayoutScope& layouter) argument
214 layouter.setNeedsLayout(this);
221 void RenderTableCell::setCellLogicalWidth(int tableLayoutLogicalWidth, SubtreeLayoutScope& layouter) argument
226 layouter.setNeedsLayout(this);
248 SubtreeLayoutScope layouter(*this);
249 layouter.setNeedsLayout(this);
H A DRenderObject.cpp694 void RenderObject::markContainingBlocksForLayout(bool scheduleRelayout, RenderObject* newRoot, SubtreeLayoutScope* layouter) argument
698 ASSERT(!layouter || this != layouter->root());
738 if (layouter) {
739 layouter->addRendererToLayout(object);
740 if (object == layouter->root())
H A DRenderObject.h1392 inline void RenderObject::setNeedsLayout(MarkingBehavior markParents, SubtreeLayoutScope* layouter) argument
1403 if (markParents == MarkContainingBlockChain && (!layouter || layouter->root() != this))
1404 markContainingBlocksForLayout(true, 0, layouter);
1408 inline void RenderObject::setNeedsLayoutAndFullPaintInvalidation(MarkingBehavior markParents, SubtreeLayoutScope* layouter) argument
1410 setNeedsLayout(markParents, layouter);
1431 inline void RenderObject::setChildNeedsLayout(MarkingBehavior markParents, SubtreeLayoutScope* layouter) argument
1437 if (!alreadyNeededLayout && markParents == MarkContainingBlockChain && (!layouter || layouter->root() != this))
1438 markContainingBlocksForLayout(true, 0, layouter);
[all...]

Completed in 187 milliseconds