HomeSort by relevance Sort by last modified time
    Searched refs:minimumValueForLength (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
LengthFunctions.h 38 PLATFORM_EXPORT LayoutUnit minimumValueForLength(const Length&, LayoutUnit maximumValue);
LengthFunctions.cpp 65 LayoutUnit minimumValueForLength(const Length& length, LayoutUnit maximumValue)
98 return minimumValueForLength(length, maximumValue);
107 return minimumValueForLength(length, maximumValue);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.cpp 143 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_coords[1], height).toFloat()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 91 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));
RenderText.h 119 LayoutUnit marginLeft() const { return minimumValueForLength(style()->marginLeft(), 0); }
120 LayoutUnit marginRight() const { return minimumValueForLength(style()->marginRight(), 0); }
RenderReplaced.cpp 318 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);
RenderBox.cpp     [all...]
RenderTable.cpp 271 LayoutUnit marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth);
272 LayoutUnit marginEnd = minimumValueForLength(style()->marginEnd(), availableLogicalWidth);
327 return minimumValueForLength(styleLogicalWidth, availableWidth) + borders;
    [all...]
RenderBoxModelObject.cpp 311 return minimumValueForLength(padding, w);
RenderMenuList.cpp 194 optionWidth += minimumValueForLength(optionStyle->textIndent(), 0);
AutoTableLayout.cpp 556 int cellLogicalWidth = std::max<int>(m_layoutStruct[i].effectiveMinLogicalWidth, minimumValueForLength(logicalWidth, tableLogicalWidth));
    [all...]
RenderInline.cpp 727 return minimumValueForLength(margin, std::max<LayoutUnit>(0, renderer->containingBlock()->availableLogicalWidth()));
    [all...]
RenderFlexibleBox.cpp 816 return minimumValueForLength(margin, availableSize);
    [all...]
RenderTableSection.cpp 728 m_rowPos[r + 1] = std::max(m_rowPos[r] + minimumValueForLength(m_grid[r].logicalHeight, 0).round(), 0);
    [all...]
RenderBlockLineLayout.cpp     [all...]
RenderBlock.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp     [all...]

Completed in 341 milliseconds