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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderFlexibleBox.cpp403 LogicalExtentComputedValues computedValues; local
406 computeLogicalHeight(borderBoxLogicalHeight, logicalTop(), computedValues);
407 if (computedValues.m_extent == LayoutUnit::max())
408 return computedValues.m_extent;
409 return std::max(LayoutUnit(0), computedValues.m_extent - borderPaddingAndScrollbar);
H A DRenderTable.cpp252 LogicalExtentComputedValues computedValues; local
253 computePositionedLogicalWidth(computedValues);
254 setLogicalWidth(computedValues.m_extent);
255 setLogicalLeft(computedValues.m_position);
256 setMarginStart(computedValues.m_margins.m_start);
257 setMarginEnd(computedValues.m_margins.m_end);
H A DRenderBlockLineLayout.cpp1304 LogicalExtentComputedValues computedValues; local
1305 childBox->computeLogicalHeight(childBox->borderAndPaddingLogicalHeight(), 0, computedValues);
1306 childMinPreferredLogicalWidth = childMaxPreferredLogicalWidth = computedValues.m_extent;
H A DRenderBlockFlow.cpp211 LogicalExtentComputedValues computedValues; local
212 computeLogicalHeight(LayoutUnit(), logicalTop(), computedValues); local
213 LayoutUnit columnHeight = computedValues.m_extent - borderAndPaddingLogicalHeight() - scrollbarLogicalHeight();
H A DRenderBlock.cpp1640 LogicalExtentComputedValues computedValues; local
1641 box->computeLogicalWidth(computedValues);
1642 LayoutUnit newLeft = computedValues.m_position;
3286 LogicalExtentComputedValues computedValues; local
3287 childBox->computeLogicalHeight(childBox->borderAndPaddingLogicalHeight(), 0, computedValues);
3288 childMinPreferredLogicalWidth = childMaxPreferredLogicalWidth = computedValues.m_extent;
H A DRenderBox.cpp1861 LogicalExtentComputedValues computedValues; local
1862 computeLogicalWidth(computedValues);
1864 setLogicalWidth(computedValues.m_extent);
1865 setLogicalLeft(computedValues.m_position);
1866 setMarginStart(computedValues.m_margins.m_start);
1867 setMarginEnd(computedValues.m_margins.m_end);
1899 void RenderBox::computeLogicalWidth(LogicalExtentComputedValues& computedValues) const
1901 computedValues.m_extent = logicalWidth();
1902 computedValues.m_position = logicalLeft();
1903 computedValues
2211 LogicalExtentComputedValues computedValues; local
2212 computeLogicalHeight(logicalHeight(), logicalTop(), computedValues); local
2446 LogicalExtentComputedValues computedValues; local
2585 LogicalExtentComputedValues computedValues; local
2662 LogicalExtentComputedValues computedValues; local
[all...]

Completed in 91 milliseconds