Home
last modified time | relevance | path

Searched refs:fullLayout (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderBlockLineLayout.cpp195 static inline void dirtyLineBoxesForRenderer(RenderObject* o, bool fullLayout) in dirtyLineBoxesForRenderer() argument
200 toRenderText(o)->dirtyLineBoxes(fullLayout); in dirtyLineBoxesForRenderer()
202 toRenderInline(o)->dirtyLineBoxes(fullLayout); in dirtyLineBoxesForRenderer()
742 bool fullLayout = !firstLineBox() || selfNeedsLayout() || relayoutChildren; in layoutInlineChildren() local
743 if (fullLayout) in layoutInlineChildren()
820 else if (fullLayout || o->needsLayout()) { in layoutInlineChildren()
822 toRenderBox(o)->dirtyLineBoxes(fullLayout); in layoutInlineChildren()
829 else if (fullLayout || o->needsLayout()) { in layoutInlineChildren()
831 toRenderBox(o)->dirtyLineBoxes(fullLayout); in layoutInlineChildren()
838 if (fullLayout || o->selfNeedsLayout()) in layoutInlineChildren()
[all …]
DRenderText.h57 void dirtyLineBoxes(bool fullLayout);
DRenderInline.h61 void dirtyLineBoxes(bool fullLayout);
DRenderBox.h267 void dirtyLineBoxes(bool fullLayout);
DRenderText.cpp1246 void RenderText::dirtyLineBoxes(bool fullLayout) in dirtyLineBoxes() argument
1248 if (fullLayout) in dirtyLineBoxes()
DRenderInline.cpp1230 void RenderInline::dirtyLineBoxes(bool fullLayout) in dirtyLineBoxes() argument
1232 if (fullLayout) { in dirtyLineBoxes()
DRenderBlock.h494 …RootInlineBox* determineStartPosition(bool& firstLine, bool& fullLayout, bool& previousLineBrokeCl…
DRenderBox.cpp1316 void RenderBox::dirtyLineBoxes(bool fullLayout) in dirtyLineBoxes() argument
1319 if (fullLayout) { in dirtyLineBoxes()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2914818 …The 'fullLayout' flag in RenderBlock::layoutInlineChildren() is pretty vague, hopefully this will …