Home
last modified time | relevance | path

Searched refs:minW (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderImage.cpp512 int minW = calcReplacedWidthUsing(style()->minWidth()); in calcReplacedWidth() local
516 width = max(minW, min(width, maxW)); in calcReplacedWidth()
525 return max(minW, min(width, maxW)); in calcReplacedWidth()
553 int minW = calcReplacedWidthUsing(style()->minWidth()); in calcReplacedHeight() local
556 width = max(minW, min(width, maxW)); in calcReplacedHeight()
DRenderVideo.cpp179 int minW = calcReplacedWidthUsing(style()->minWidth()); in calcReplacedWidth() local
182 return max(minW, min(width, maxW)); in calcReplacedWidth()
DRenderText.cpp446 int& minW, int& maxW, bool& stripFrontSpaces) in trimmedPrefWidths() argument
465 minW = 0; in trimmedPrefWidths()
471 minW = m_minWidth; in trimmedPrefWidths()
492 if (!style()->autoWrap() || minW > maxW) in trimmedPrefWidths()
493 minW = maxW; in trimmedPrefWidths()
DRenderFlexibleBox.cpp1128 int minW = child->minPrefWidth(); in allowedChildFlex() local
1131 minW = child->style()->minWidth().value(); in allowedChildFlex()
1133 minW = child->maxPrefWidth(); in allowedChildFlex()
1135 minW = child->minPrefWidth(); in allowedChildFlex()
1137 int allowedShrinkage = min(0, minW - w); in allowedChildFlex()
DRenderText.h84 int& minW, int& maxW, bool& stripFrontSpaces);
DRenderBox.cpp1793 int minW = calcWidthUsing(MinWidth, containerWidth); in calcWidth() local
1794 if (width() < minW) { in calcWidth()
1795 setWidth(minW); in calcWidth()
2101 int minW = calcReplacedWidthUsing(style()->minWidth()); in calcReplacedWidth() local
2104 return max(minW, min(width, maxW)); in calcReplacedWidth()