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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp524 LayoutUnit spaceAdd = LayoutUnit(spaceAvailableThisPass * (child->style()->boxFlex() / totalFlex)); local
525 if (spaceAdd) {
526 child->setOverrideLogicalContentWidth(contentWidthForChild(child) + spaceAdd);
531 spaceAvailableThisPass -= spaceAdd;
532 remainingSpace -= spaceAdd;
533 groupRemainingSpace -= spaceAdd;
540 LayoutUnit spaceAdd = groupRemainingSpace > 0 ? 1 : -1; local
543 child->setOverrideLogicalContentWidth(contentWidthForChild(child) + spaceAdd);
546 remainingSpace -= spaceAdd;
547 groupRemainingSpace -= spaceAdd;
775 LayoutUnit spaceAdd = static_cast<LayoutUnit>(spaceAvailableThisPass * (child->style()->boxFlex() / totalFlex)); local
791 LayoutUnit spaceAdd = groupRemainingSpace > 0 ? 1 : -1; local
[all...]

Completed in 161 milliseconds