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