/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | RoundedRect.h | 66 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth); 68 …void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bot… in shrink() argument
|
D | FloatRoundedRect.h | 63 void expand(float topWidth, float bottomWidth, float leftWidth, float rightWidth); 65 …void shrink(float topWidth, float bottomWidth, float leftWidth, float rightWidth) { expand(-topWid… in shrink() argument
|
D | FloatRoundedRect.cpp | 80 void FloatRoundedRect::Radii::expand(float topWidth, float bottomWidth, float leftWidth, float righ… in expand() argument 92 m_bottomLeft.setHeight(std::max<float>(0, m_bottomLeft.height() + bottomWidth)); in expand() 96 m_bottomRight.setHeight(std::max<float>(0, m_bottomRight.height() + bottomWidth)); in expand()
|
D | RoundedRect.cpp | 64 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) in expand() argument 76 m_bottomLeft.setHeight(max<int>(0, m_bottomLeft.height() + bottomWidth)); in expand() 80 m_bottomRight.setHeight(max<int>(0, m_bottomRight.height() + bottomWidth)); in expand()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBoxModelObject.cpp | 1196 …int bottomWidth = computeBorderImageSide(ninePieceImage.borderSlices().bottom(), style->borderBott… in paintNinePieceImage() local 1204 int borderSideHeight = max(1, topWidth + bottomWidth); in paintNinePieceImage() 1209 bottomWidth *= borderSideScaleFactor; in paintNinePieceImage() 1216 bool drawBottom = bottomSlice > 0 && bottomWidth > 0; in paintNinePieceImage() 1218 …ageHeight - topSlice - bottomSlice) > 0 && (borderImageRect.height() - topWidth - bottomWidth) > 0; in paintNinePieceImage() 1223 float destinationHeight = borderImageRect.height() - topWidth - bottomWidth; in paintNinePieceImage() 1231 float bottomSideScale = drawBottom ? (float)bottomWidth / bottomSlice : 1; in paintNinePieceImage() 1245 ….get(), IntRect(borderImageRect.x(), borderImageRect.maxY() - bottomWidth, leftWidth, bottomWidth), in paintNinePieceImage() 1267 …orderImageRect.maxX() - rightWidth, borderImageRect.maxY() - bottomWidth, rightWidth, bottomWidth), in paintNinePieceImage() 1287 …edImage(image.get(), IntRect(borderImageRect.x() + leftWidth, borderImageRect.maxY() - bottomWidth, in paintNinePieceImage() [all …]
|
D | RenderTableCell.cpp | 1130 int bottomWidth = bottomVal.width(); in paintCollapsedBorders() local 1137 paintRect.height() + topWidth / 2 + (bottomWidth + 1) / 2); in paintCollapsedBorders() 1153 …bottomVal, BSBottom, renderBottom, borderRect.x(), borderRect.maxY() - bottomWidth, borderRect.max… in paintCollapsedBorders()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | RenderStyle.cpp | 988 int bottomWidth = (horizontal || includeLogicalRightEdge) ? borderBottomWidth() : 0; in getRoundedInnerBorderFor() local 990 …return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeL… in getRoundedInnerBorderFor() 994 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in… in getRoundedInnerBorderFor() argument 999 borderRect.height() - topWidth - bottomWidth); in getRoundedInnerBorderFor() 1005 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth); in getRoundedInnerBorderFor()
|
D | RenderStyle.h | 1026 …int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool in…
|