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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderFlexibleBox.cpp431 LogicalExtentComputedValues computedValues; local
435 computeLogicalHeight(borderBoxLogicalHeight, logicalTop(), computedValues);
436 if (computedValues.m_extent == LayoutUnit::max())
437 return computedValues.m_extent;
438 return std::max(LayoutUnit(0), computedValues.m_extent - borderPaddingAndScrollbar);
H A DRenderTable.cpp254 LogicalExtentComputedValues computedValues; local
255 computePositionedLogicalWidth(computedValues);
256 setLogicalWidth(computedValues.m_extent);
257 setLogicalLeft(computedValues.m_position);
258 setMarginStart(computedValues.m_margins.m_start);
259 setMarginEnd(computedValues.m_margins.m_end);
H A DRenderBlockLineLayout.cpp1456 LogicalExtentComputedValues computedValues; local
1457 childBox->computeLogicalHeight(childBox->borderAndPaddingLogicalHeight(), 0, computedValues);
1458 childMinPreferredLogicalWidth = childMaxPreferredLogicalWidth = computedValues.m_extent;
H A DRenderBlockFlow.cpp197 LogicalExtentComputedValues computedValues; local
198 computeLogicalHeight(LayoutUnit(), logicalTop(), computedValues); local
199 LayoutUnit columnHeight = computedValues.m_extent - borderAndPaddingLogicalHeight() - scrollbarLogicalHeight();
H A DRenderBlock.cpp1612 LogicalExtentComputedValues computedValues; local
1613 box->computeLogicalWidth(computedValues);
1614 LayoutUnit newLeft = computedValues.m_position;
3687 LogicalExtentComputedValues computedValues; local
3688 childBox->computeLogicalHeight(childBox->borderAndPaddingLogicalHeight(), 0, computedValues);
3689 childMinPreferredLogicalWidth = childMaxPreferredLogicalWidth = computedValues.m_extent;
H A DRenderBox.cpp2131 LogicalExtentComputedValues computedValues; local
2132 computeLogicalWidth(computedValues);
2134 setLogicalWidth(computedValues.m_extent);
2135 setLogicalLeft(computedValues.m_position);
2136 setMarginStart(computedValues.m_margins.m_start);
2137 setMarginEnd(computedValues.m_margins.m_end);
2169 void RenderBox::computeLogicalWidth(LogicalExtentComputedValues& computedValues) const
2171 computedValues.m_extent = logicalWidth();
2172 computedValues.m_position = logicalLeft();
2173 computedValues
2481 LogicalExtentComputedValues computedValues; local
2482 computeLogicalHeight(logicalHeight(), logicalTop(), computedValues); local
2718 LogicalExtentComputedValues computedValues; local
2827 LogicalExtentComputedValues computedValues; local
2903 LogicalExtentComputedValues computedValues; local
[all...]

Completed in 176 milliseconds