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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.h55 , maxLogicalWidth(0)
66 int maxLogicalWidth; member in struct:blink::FINAL::Layout
H A DAutoTableLayout.cpp74 columnLayout.maxLogicalWidth = std::max<int>(columnLayout.maxLogicalWidth, 1);
78 if (cell->maxPreferredLogicalWidth() > columnLayout.maxLogicalWidth) {
79 columnLayout.maxLogicalWidth = cell->maxPreferredLogicalWidth();
131 if (m_table->document().inQuirksMode() && columnLayout.maxLogicalWidth > columnLayout.logicalWidth.value() && fixedContributor != maxContributor) {
137 columnLayout.maxLogicalWidth = std::max(columnLayout.maxLogicalWidth, columnLayout.minLogicalWidth);
165 if (colLogicalWidth.isFixed() && m_layoutStruct[effCol].maxLogicalWidth < colLogicalWidth.value())
166 m_layoutStruct[effCol].maxLogicalWidth = colLogicalWidth.value();
278 int maxLogicalWidth local
[all...]
H A DRenderBlockLineLayout.cpp1193 void RenderBlockFlow::computeInlinePreferredLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) argument
1332 updatePreferredWidth(maxLogicalWidth, inlineMax);
1467 updatePreferredWidth(maxLogicalWidth, inlineMax);
1468 updatePreferredWidth(maxLogicalWidth, childMax);
1481 updatePreferredWidth(maxLogicalWidth, inlineMax);
1500 updatePreferredWidth(maxLogicalWidth, inlineMax);
H A DRenderText.cpp865 float RenderText::maxLogicalWidth() const function in class:blink::RenderText
1512 w = maxLogicalWidth();
H A DRenderBox.cpp885 void RenderBox::computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const
888 maxLogicalWidth = maxPreferredLogicalWidth() - borderAndPaddingLogicalWidth();
2007 LayoutUnit maxLogicalWidth = 0; local
2008 computeIntrinsicLogicalWidths(minLogicalWidth, maxLogicalWidth);
2014 return maxLogicalWidth + borderAndPadding;
2018 maxLogicalWidth += borderAndPadding;
2019 return std::max(minLogicalWidth, std::min(maxLogicalWidth, fillAvailableMeasure(availableLogicalWidth)));
2480 LayoutUnit maxLogicalWidth = (shouldComputePreferred == ComputePreferred && style()->logicalMaxWidth().isPercent()) || style()->logicalMaxWidth().isMaxSizeNone() ? logicalWidth : computeReplacedLogicalWidthUsing(style()->logicalMaxWidth()); local
2481 return std::max(minLogicalWidth, std::min(logicalWidth, maxLogicalWidth));

Completed in 427 milliseconds