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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp540 LayoutUnit spaceAdd = LayoutUnit(spaceAvailableThisPass * (child->style()->boxFlex() / totalFlex)); local
541 if (spaceAdd) {
542 child->setOverrideLogicalContentWidth(contentWidthForChild(child) + spaceAdd);
547 spaceAvailableThisPass -= spaceAdd;
548 remainingSpace -= spaceAdd;
549 groupRemainingSpace -= spaceAdd;
556 LayoutUnit spaceAdd = groupRemainingSpace > 0 ? 1 : -1; local
559 child->setOverrideLogicalContentWidth(contentWidthForChild(child) + spaceAdd);
562 remainingSpace -= spaceAdd;
563 groupRemainingSpace -= spaceAdd;
791 LayoutUnit spaceAdd = static_cast<LayoutUnit>(spaceAvailableThisPass * (child->style()->boxFlex() / totalFlex)); local
807 LayoutUnit spaceAdd = groupRemainingSpace > 0 ? 1 : -1; local
[all...]

Completed in 46 milliseconds