Searched refs:rightWidth (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DRoundedRect.h64 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth);
66 void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); } argument
H A DRoundedRect.cpp63 void RoundedRect::Radii::expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth) argument
70 m_topRight.setWidth(max<int>(0, m_topRight.width() + rightWidth));
78 m_bottomRight.setWidth(max<int>(0, m_bottomRight.width() + rightWidth));
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderBoxModelObject.cpp1373 int rightWidth = computeBorderImageSide(ninePieceImage.borderSlices().right(), style->borderRightWidth(), rightSlice, borderImageRect.width(), renderView); local
1381 int borderSideWidth = max(1, leftWidth + rightWidth);
1386 rightWidth *= borderSideScaleFactor;
1393 bool drawRight = rightSlice > 0 && rightWidth > 0;
1395 bool drawMiddle = ninePieceImage.fill() && (imageWidth - leftSlice - rightSlice) > 0 && (borderImageRect.width() - leftWidth - rightWidth) > 0
1401 float destinationWidth = borderImageRect.width() - leftWidth - rightWidth;
1408 float rightSideScale = drawRight ? (float)rightWidth / rightSlice : 1;
1438 // The top right corner rect is (tx + w - rightWidth, ty, rightWidth, topWidth)
1441 graphicsContext->drawImage(image.get(), colorSpace, IntRect(borderImageRect.maxX() - rightWidth, borderImageRec
2202 LayoutUnit rightWidth = edges[BSRight].usedWidth() / 2; local
[all...]
H A DRenderTableCell.cpp1135 int rightWidth = rightVal.width(); local
1139 paintRect.width() + leftWidth / 2 + (rightWidth + 1) / 2,
1158 borders.addBorder(rightVal, BSRight, renderRight, borderRect.maxX() - rightWidth, borderRect.y(), borderRect.maxX(), borderRect.maxY(), rightStyle);
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DRenderStyle.cpp1106 int rightWidth = (!horizontal || includeLogicalRightEdge) ? borderRightWidth() : 0; local
1110 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
1114 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const
1118 borderRect.width() - leftWidth - rightWidth,
1125 radii.shrink(topWidth, bottomWidth, leftWidth, rightWidth);
1113 getRoundedInnerBorderFor(const LayoutRect& borderRect, int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
H A DRenderStyle.h1093 int topWidth, int bottomWidth, int leftWidth, int rightWidth, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const;

Completed in 184 milliseconds