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.cpp62 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) argument
74 m_bottomLeft.setHeight(std::max<int>(0, m_bottomLeft.height() + bottomWidth));
78 m_bottomRight.setHeight(std::max<int>(0, m_bottomRight.height() + bottomWidth));
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp914 int bottomWidth = computeBorderImageSide(ninePieceImage.borderSlices().bottom(), style->borderBottomWidth(), bottomSlice, borderImageRect.height()); local
922 int borderSideHeight = std::max(1, topWidth + bottomWidth);
927 bottomWidth *= borderSideScaleFactor;
934 bool drawBottom = bottomSlice > 0 && bottomWidth > 0;
936 && (imageHeight - topSlice - bottomSlice) > 0 && (borderImageRect.height() - topWidth - bottomWidth) > 0;
941 float destinationHeight = borderImageRect.height() - topWidth - bottomWidth;
949 float bottomSideScale = drawBottom ? (float)bottomWidth / bottomSlice : 1;
961 // The bottom left corner rect is (tx, ty + h - bottomWidth, leftWidth, bottomWidth)
964 graphicsContext->drawImage(image.get(), IntRect(borderImageRect.x(), borderImageRect.maxY() - bottomWidth, leftWidt
1813 LayoutUnit bottomWidth = edges[BSBottom].usedWidth() / 2; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp985 int bottomWidth = (horizontal || includeLogicalRightEdge) ? borderBottomWidth() : 0; local
987 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
991 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
996 borderRect.height() - topWidth - bottomWidth);
1002 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth);
990 getRoundedInnerBorderFor(const LayoutRect& borderRect, int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
H A DRenderStyle.h1067 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCell.cpp1117 int bottomWidth = bottomVal.width(); local
1124 paintRect.height() + topWidth / 2 + (bottomWidth + 1) / 2);
1140 borders.addBorder(bottomVal, BSBottom, renderBottom, borderRect.x(), borderRect.maxY() - bottomWidth, borderRect.maxX(), borderRect.maxY(), bottomStyle);

Completed in 2677 milliseconds