Searched refs:bottomWidth (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/ |
D | RoundedIntRect.h | 63 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth); 65 …void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bot… in shrink() argument
|
D | RoundedIntRect.cpp | 63 void RoundedIntRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) in expand() argument 72 m_bottomLeft.setHeight(max(0, m_bottomLeft.height() + bottomWidth)); in expand() 75 m_bottomRight.setHeight(max(0, m_bottomRight.height() + bottomWidth)); in expand()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderBoxModelObject.cpp | 958 int bottomWidth = fitToBorder ? style->borderBottomWidth() : bottomSlice; in paintNinePieceImage() local 963 bool drawBottom = bottomSlice > 0 && bottomWidth > 0; in paintNinePieceImage() 965 … (imageHeight - topSlice - bottomSlice) > 0 && (h - topWidth - bottomWidth) > 0; in paintNinePieceImage() 982 …text->drawImage(image.get(), colorSpace, IntRect(tx, ty + h - bottomWidth, leftWidth, bottomWidth), in paintNinePieceImage() 988 h - topWidth - bottomWidth), in paintNinePieceImage() 1004 …age.get(), colorSpace, IntRect(tx + w - rightWidth, ty + h - bottomWidth, rightWidth, bottomWidth), in paintNinePieceImage() 1009 h - topWidth - bottomWidth), in paintNinePieceImage() 1022 …phicsContext->drawTiledImage(image.get(), colorSpace, IntRect(tx + leftWidth, ty + h - bottomWidth, in paintNinePieceImage() 1023 w - leftWidth - rightWidth, bottomWidth), in paintNinePieceImage() 1030 h - topWidth - bottomWidth), in paintNinePieceImage() [all …]
|
D | RenderTableCell.cpp | 936 int bottomWidth = bottomVal.width(); in paintCollapsedBorder() local 943 h += topWidth / 2 + (bottomWidth + 1) / 2; in paintCollapsedBorder() 959 …borders.addBorder(bottomVal, BSBottom, renderBottom, tx, ty + h - bottomWidth, tx + w, ty + h, bot… in paintCollapsedBorder()
|
D | RenderObject.h | 446 IntRect borderInnerRect(const IntRect&, unsigned short topWidth, unsigned short bottomWidth,
|
D | RenderObject.cpp | 916 …ect(const IntRect& borderRect, unsigned short topWidth, unsigned short bottomWidth, unsigned short… in borderInnerRect() argument 922 borderRect.height() - topWidth - bottomWidth); in borderInnerRect()
|
/external/webkit/Source/WebCore/rendering/style/ |
D | RenderStyle.cpp | 820 int bottomWidth = (horizontal || includeLogicalRightEdge) ? borderBottomWidth() : 0; in getRoundedInnerBorderFor() local 822 …return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeL… in getRoundedInnerBorderFor() 826 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in… in getRoundedInnerBorderFor() argument 831 borderRect.height() - topWidth - bottomWidth); in getRoundedInnerBorderFor() 837 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth); in getRoundedInnerBorderFor()
|
D | RenderStyle.h | 875 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in…
|