Searched refs:bottomWidth (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRoundedRect.cpp80 void FloatRoundedRect::Radii::expand(float topWidth, float bottomWidth, float leftWidth, float rightWidth) argument
92 m_bottomLeft.setHeight(std::max<float>(0, m_bottomLeft.height() + bottomWidth));
96 m_bottomRight.setHeight(std::max<float>(0, m_bottomRight.height() + bottomWidth));
H A DFloatRoundedRect.h72 void expand(float topWidth, float bottomWidth, float leftWidth, float rightWidth);
74 void shrink(float topWidth, float bottomWidth, float leftWidth, float rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); } argument
H A DRoundedRect.h66 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth);
68 void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); } argument
H A DRoundedRect.cpp64 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) argument
76 m_bottomLeft.setHeight(max<int>(0, m_bottomLeft.height() + bottomWidth));
80 m_bottomRight.setHeight(max<int>(0, m_bottomRight.height() + bottomWidth));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.cpp1198 int bottomWidth = computeBorderImageSide(ninePieceImage.borderSlices().bottom(), style->borderBottomWidth(), bottomSlice, borderImageRect.height()); local
1206 int borderSideHeight = max(1, topWidth + bottomWidth);
1211 bottomWidth *= borderSideScaleFactor;
1218 bool drawBottom = bottomSlice > 0 && bottomWidth > 0;
1220 && (imageHeight - topSlice - bottomSlice) > 0 && (borderImageRect.height() - topWidth - bottomWidth) > 0;
1225 float destinationHeight = borderImageRect.height() - topWidth - bottomWidth;
1233 float bottomSideScale = drawBottom ? (float)bottomWidth / bottomSlice : 1;
1244 // The bottom left corner rect is (tx, ty + h - bottomWidth, leftWidth, bottomWidth)
1247 graphicsContext->drawImage(image.get(), IntRect(borderImageRect.x(), borderImageRect.maxY() - bottomWidth, leftWidt
2039 LayoutUnit bottomWidth = edges[BSBottom].usedWidth() / 2; local
[all...]
H A DRenderTableCell.cpp1130 int bottomWidth = bottomVal.width(); local
1137 paintRect.height() + topWidth / 2 + (bottomWidth + 1) / 2);
1153 borders.addBorder(bottomVal, BSBottom, renderBottom, borderRect.x(), borderRect.maxY() - bottomWidth, borderRect.maxX(), borderRect.maxY(), bottomStyle);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp1012 int bottomWidth = (horizontal || includeLogicalRightEdge) ? borderBottomWidth() : 0; local
1014 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
1018 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
1023 borderRect.height() - topWidth - bottomWidth);
1029 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth);
1017 getRoundedInnerBorderFor(const LayoutRect& borderRect, int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
H A DRenderStyle.h1068 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const;

Completed in 4488 milliseconds