Searched defs:bottomWidth (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DRoundedIntRect.cpp63 void RoundedIntRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) argument
72 m_bottomLeft.setHeight(max(0, m_bottomLeft.height() + bottomWidth));
75 m_bottomRight.setHeight(max(0, m_bottomRight.height() + bottomWidth));
H A DRoundedIntRect.h63 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth);
65 void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); } argument
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.cpp820 int bottomWidth = (horizontal || includeLogicalRightEdge) ? borderBottomWidth() : 0; local
822 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
826 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
831 borderRect.height() - topWidth - bottomWidth);
837 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth);
825 getRoundedInnerBorderFor(const IntRect& borderRect, int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
/external/webkit/Source/WebCore/rendering/
H A DRenderTableCell.cpp936 int bottomWidth = bottomVal.width(); local
943 h += topWidth / 2 + (bottomWidth + 1) / 2;
959 borders.addBorder(bottomVal, BSBottom, renderBottom, tx, ty + h - bottomWidth, tx + w, ty + h, bottomStyle);
H A DRenderBoxModelObject.cpp958 int bottomWidth = fitToBorder ? style->borderBottomWidth() : bottomSlice; local
963 bool drawBottom = bottomSlice > 0 && bottomWidth > 0;
965 (imageHeight - topSlice - bottomSlice) > 0 && (h - topWidth - bottomWidth) > 0;
979 // The bottom left corner rect is (tx, ty + h - bottomWidth, leftWidth, bottomWidth)
982 graphicsContext->drawImage(image.get(), colorSpace, IntRect(tx, ty + h - bottomWidth, leftWidth, bottomWidth),
988 h - topWidth - bottomWidth),
1001 // The bottom right corner rect is (tx + w - rightWidth, ty + h - bottomWidth, rightWidth, bottomWidth)
1564 int bottomWidth = edges[BSBottom].usedWidth() / 2; local
[all...]
H A DRenderObject.cpp916 IntRect RenderObject::borderInnerRect(const IntRect& borderRect, unsigned short topWidth, unsigned short bottomWidth, unsigned short leftWidth, unsigned short rightWidth) const argument
922 borderRect.height() - topWidth - bottomWidth);

Completed in 2300 milliseconds