Searched refs:minW (Results 1 – 6 of 6) sorted by relevance
/external/webkit/WebCore/rendering/ |
D | RenderImage.cpp | 512 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()
|
D | RenderVideo.cpp | 179 int minW = calcReplacedWidthUsing(style()->minWidth()); in calcReplacedWidth() local 182 return max(minW, min(width, maxW)); in calcReplacedWidth()
|
D | RenderText.cpp | 446 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()
|
D | RenderFlexibleBox.cpp | 1128 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()
|
D | RenderText.h | 84 int& minW, int& maxW, bool& stripFrontSpaces);
|
D | RenderBox.cpp | 1793 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()
|