Searched refs:minimumValueForLength (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAreaElement.cpp143 path.moveTo(FloatPoint(minimumValueForLength(m_coords[0], width).toFloat(), minimumValueForLength(m_coords[1], height).toFloat()));
145 path.addLineTo(FloatPoint(minimumValueForLength(m_coords[i * 2], width).toFloat(), minimumValueForLength(m_coords[i * 2 + 1], height).toFloat()));
152 float r = std::min(minimumValueForLength(radius, width).toFloat(), minimumValueForLength(radius, height).toFloat());
153 path.addEllipse(FloatRect(minimumValueForLength(m_coords[0], width).toFloat() - r, minimumValueForLength(m_coords[1], height).toFloat() - r, 2 * r, 2 * r));
158 float x0 = minimumValueForLength(m_coords[0], width).toFloat();
159 float y0 = minimumValueForLength(m_coord
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthFunctions.cpp65 LayoutUnit minimumValueForLength(const Length& length, LayoutUnit maximumValue) function in namespace:blink
98 return minimumValueForLength(length, maximumValue);
107 return minimumValueForLength(length, maximumValue);
H A DLengthFunctions.h38 PLATFORM_EXPORT LayoutUnit minimumValueForLength(const Length&, LayoutUnit maximumValue);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderScrollbarPart.cpp91 return minimumValueForLength(length, containingLength);
108 m_marginBox.setLeft(minimumValueForLength(style()->marginLeft(), visibleSize));
109 m_marginBox.setRight(minimumValueForLength(style()->marginRight(), visibleSize));
125 m_marginBox.setTop(minimumValueForLength(style()->marginTop(), visibleSize));
126 m_marginBox.setBottom(minimumValueForLength(style()->marginBottom(), visibleSize));
H A DRenderText.h119 LayoutUnit marginLeft() const { return minimumValueForLength(style()->marginLeft(), 0); }
120 LayoutUnit marginRight() const { return minimumValueForLength(style()->marginRight(), 0); }
H A DRenderReplaced.cpp318 LayoutUnit xOffset = minimumValueForLength(style()->objectPosition().x(), contentRect.width() - finalRect.width());
319 LayoutUnit yOffset = minimumValueForLength(style()->objectPosition().y(), contentRect.height() - finalRect.height());
379 LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), logicalWidth);
380 LayoutUnit marginEnd = minimumValueForLength(style()->marginEnd(), logicalWidth);
H A DRenderBox.cpp1941 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth);
1942 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth);
1996 marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth);
1997 marginEnd = minimumValueForLength(style()->marginEnd(), availableLogicalWidth);
2143 marginStart = minimumValueForLength(marginStartLength, containerWidth);
2144 marginEnd = minimumValueForLength(marginEndLength, containerWidth);
2158 LayoutUnit marginStartWidth = minimumValueForLength(marginStartLength, containerWidth);
2159 LayoutUnit marginEndWidth = minimumValueForLength(marginEndLength, containerWidth);
2509 return adjustContentBoxLogicalWidthForBoxSizing(minimumValueForLength(logicalWidth, cw));
3074 marginLogicalLeftValue = minimumValueForLength(marginLogicalLef
[all...]
H A DRenderTable.cpp271 LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth);
272 LayoutUnit marginEnd = minimumValueForLength(style()->marginEnd(), availableLogicalWidth);
327 return minimumValueForLength(styleLogicalWidth, availableWidth) + borders;
H A DRenderBoxModelObject.cpp311 return minimumValueForLength(padding, w);
H A DRenderMenuList.cpp194 optionWidth += minimumValueForLength(optionStyle->textIndent(), 0);
H A DAutoTableLayout.cpp556 int cellLogicalWidth = std::max<int>(m_layoutStruct[i].effectiveMinLogicalWidth, minimumValueForLength(logicalWidth, tableLogicalWidth));
H A DRenderInline.cpp727 return minimumValueForLength(margin, std::max<LayoutUnit>(0, renderer->containingBlock()->availableLogicalWidth()));
H A DRenderFlexibleBox.cpp816 return minimumValueForLength(margin, availableSize);
H A DRenderTableSection.cpp728 m_rowPos[r + 1] = std::max(m_rowPos[r] + minimumValueForLength(m_grid[r].logicalHeight, 0).round(), 0);
H A DRenderBlockLineLayout.cpp1222 LayoutUnit textIndent = minimumValueForLength(styleToUse->textIndent(), cw);
H A DRenderBlock.cpp2330 return minimumValueForLength(style()->textIndent(), cw);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp2044 value = minimumValueForLength(marginRight, toRenderBox(renderer)->containingBlockLogicalWidthForContent()).toFloat();
2505 list->append(zoomAdjustedPixelValue(minimumValueForLength(style->perspectiveOriginX(), box.width()), *style));
2506 list->append(zoomAdjustedPixelValue(minimumValueForLength(style->perspectiveOriginY(), box.height()), *style));
2554 list->append(zoomAdjustedPixelValue(minimumValueForLength(style->transformOriginX(), box.width()), *style));
2555 list->append(zoomAdjustedPixelValue(minimumValueForLength(style->transformOriginY(), box.height()), *style));
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp1183 return minimumValueForLength(lh, fontSize());

Completed in 225 milliseconds