OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:relayoutChildren
(Results
1 - 14
of
14
) sorted by null
/external/webkit/Source/WebCore/rendering/
RenderFlexibleBox.h
43
virtual void layoutBlock(bool
relayoutChildren
, int pageHeight);
44
void layoutHorizontalBox(bool
relayoutChildren
);
45
void layoutVerticalBox(bool
relayoutChildren
);
66
void applyLineClamp(FlexBoxIterator&, bool
relayoutChildren
);
RenderFieldset.h
41
virtual RenderObject* layoutSpecialExcludedChild(bool
relayoutChildren
);
RenderRubyRun.h
56
virtual RenderObject* layoutSpecialExcludedChild(bool
relayoutChildren
);
RenderFlexibleBox.cpp
213
void RenderFlexibleBox::layoutBlock(bool
relayoutChildren
, int /*pageHeight FIXME: Implement */)
217
if (!
relayoutChildren
&& simplifiedLayout())
234
relayoutChildren
= true;
237
checkAndSetRelayoutChildren(&
relayoutChildren
);
254
layoutHorizontalBox(
relayoutChildren
);
256
layoutVerticalBox(
relayoutChildren
);
262
relayoutChildren
= true;
264
layoutPositionedObjects(
relayoutChildren
|| isRoot());
305
static void gatherFlexChildrenInfo(FlexBoxIterator& iterator, bool
relayoutChildren
, unsigned int& highestFlexGroup, unsigned int& lowestFlexGroup, bool& haveFlex)
314
if (!
relayoutChildren
)
[
all
...]
RenderFieldset.cpp
67
RenderObject* RenderFieldset::layoutSpecialExcludedChild(bool
relayoutChildren
)
71
if (
relayoutChildren
)
RenderRubyRun.cpp
214
RenderObject* RenderRubyRun::layoutSpecialExcludedChild(bool
relayoutChildren
)
220
if (
relayoutChildren
)
RenderTextControlSingleLine.cpp
258
bool
relayoutChildren
= oldHeight != height() || oldWidth != width();
261
checkAndSetRelayoutChildren(&
relayoutChildren
);
273
relayoutChildren
= true;
282
relayoutChildren
= true;
288
relayoutChildren
= true;
292
RenderBlock::layoutBlock(
relayoutChildren
);
[
all
...]
RenderBlock.h
80
virtual void layoutBlock(bool
relayoutChildren
, int pageLogicalHeight = 0);
272
void layoutPositionedObjects(bool
relayoutChildren
);
354
void layoutBlockChildren(bool
relayoutChildren
, int& maxFloatLogicalBottom);
355
void layoutInlineChildren(bool
relayoutChildren
, int& repaintLogicalTop, int& repaintLogicalBottom);
365
virtual RenderObject* layoutSpecialExcludedChild(bool /*
relayoutChildren
*/) { return 0; }
[
all
...]
RenderTable.cpp
301
bool
relayoutChildren
= false;
308
if (!checkAndSetRelayoutChildren(&
relayoutChildren
)
355
if (
relayoutChildren
) {
[
all
...]
RenderBlock.cpp
[
all
...]
RenderView.cpp
118
bool
relayoutChildren
= !printing() && (!m_frameView || width() != viewWidth() || height() != viewHeight());
119
if (
relayoutChildren
) {
RenderBlockLineLayout.cpp
[
all
...]
RenderBox.h
467
bool checkAndSetRelayoutChildren(bool*
relayoutChildren
);
RenderBox.cpp
[
all
...]
Completed in 580 milliseconds