Home
last modified time | relevance | path

Searched refs:minLogicalWidth (Results 1 – 8 of 8) sorted by relevance

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