Searched refs:minLogicalWidth (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DAutoTableLayout.h51 : minLogicalWidth(0)
62 int minLogicalWidth; member in struct:WebCore::AutoTableLayout::Layout
H A DAutoTableLayout.cpp72 columnLayout.minLogicalWidth = max(columnLayout.minLogicalWidth, cellHasContent ? 1 : 0);
76 columnLayout.minLogicalWidth = max(cell->minPreferredLogicalWidth(), columnLayout.minLogicalWidth);
122 columnLayout.minLogicalWidth = max(columnLayout.minLogicalWidth, cellHasContent ? 1 : 0);
138 columnLayout.maxLogicalWidth = max(columnLayout.maxLogicalWidth, columnLayout.minLogicalWidth);
287 m_layoutStruct[i].effectiveMinLogicalWidth = m_layoutStruct[i].minLogicalWidth;
436 m_layoutStruct[pos].maxLogicalWidth = max(m_layoutStruct[pos].maxLogicalWidth, m_layoutStruct[pos].minLogicalWidth);
H A DRenderImage.cpp500 int minLogicalWidth = computeReplacedLogicalWidthUsing(style()->logicalMinWidth()); local
504 logicalWidth = max(minLogicalWidth, min(logicalWidth, maxLogicalWidth));
513 return max(minLogicalWidth, min(logicalWidth, maxLogicalWidth));
542 int minLogicalWidth = computeReplacedLogicalWidthUsing(style()->minWidth()); local
545 logicalWidth = max(minLogicalWidth, min(logicalWidth, maxLogicalWidth));
H A DRenderReplaced.cpp217 int minLogicalWidth = computeReplacedLogicalWidthUsing(style()->logicalMinWidth()); local
220 return max(minLogicalWidth, min(logicalWidth, maxLogicalWidth));
H A DRenderText.h77 float minLogicalWidth() const;
H A DRenderBox.cpp1638 int minLogicalWidth = computeLogicalWidthUsing(MinLogicalWidth, containerWidthInInlineDirection); local
1639 if (logicalWidth() < minLogicalWidth) {
1640 setLogicalWidth(minLogicalWidth);
2001 int minLogicalWidth = computeReplacedLogicalWidthUsing(style()->logicalMinWidth()); local
2004 return max(minLogicalWidth, min(logicalWidth, maxLogicalWidth));
2354 int minLogicalWidth; local
2362 minLogicalWidth, minMarginLogicalLeft, minMarginLogicalRight, minLogicalLeftPos);
2364 if (logicalWidth() < minLogicalWidth) {
2365 setLogicalWidth(minLogicalWidth);
H A DRenderText.cpp748 float RenderText::minLogicalWidth() const function in class:WebCore::RenderText

Completed in 194 milliseconds