OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:totalFlexGrow
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFlexibleBox.h
145
bool computeNextFlexLine(OrderedFlexItemList& orderedChildren, LayoutUnit& sumFlexBaseSize, double&
totalFlexGrow
, double& totalWeightedFlexShrink, LayoutUnit& sumHypotheticalMainSize, bool& hasInfiniteLineLength, bool relayoutChildren);
147
bool resolveFlexibleLengths(FlexSign, const OrderedFlexItemList&, LayoutUnit& availableFreeSpace, double&
totalFlexGrow
, double& totalWeightedFlexShrink, InflexibleFlexItemSize&, Vector<LayoutUnit, 16>& childSizes, bool hasInfiniteLineLength);
148
void freezeViolations(const Vector<Violation>&, LayoutUnit& availableFreeSpace, double&
totalFlexGrow
, double& totalWeightedFlexShrink, InflexibleFlexItemSize&, bool hasInfiniteLineLength);
RenderFlexibleBox.cpp
642
double
totalFlexGrow
;
651
while (computeNextFlexLine(orderedChildren, sumFlexBaseSize,
totalFlexGrow
, totalWeightedFlexShrink, sumHypotheticalMainSize, hasInfiniteLineLength, relayoutChildren)) {
657
while (!resolveFlexibleLengths(flexSign, orderedChildren, availableFreeSpace,
totalFlexGrow
, totalWeightedFlexShrink, inflexibleItems, childSizes, hasInfiniteLineLength)) {
658
ASSERT(
totalFlexGrow
>= 0 && totalWeightedFlexShrink >= 0);
857
bool RenderFlexibleBox::computeNextFlexLine(OrderedFlexItemList& orderedChildren, LayoutUnit& sumFlexBaseSize, double&
totalFlexGrow
, double& totalWeightedFlexShrink, LayoutUnit& sumHypotheticalMainSize, bool& hasInfiniteLineLength, bool relayoutChildren)
[
all
...]
Completed in 193 milliseconds