Searched refs:borderRect (Results 1 - 10 of 10) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/svg/
H A DRenderSVGBlock.cpp38 LayoutRect borderRect = borderBoxRect(); local
41 textShadow->adjustRectForShadow(borderRect);
43 return borderRect;
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderFrameSet.cpp85 void RenderFrameSet::paintColumnBorder(const PaintInfo& paintInfo, const IntRect& borderRect) argument
87 if (!paintInfo.rect.intersects(borderRect))
95 context->fillRect(borderRect, frameSetElement().hasBorderColor() ? style().visitedDependentColor(CSSPropertyBorderLeftColor) : borderFillColor(), colorSpace);
99 if (borderRect.width() >= 3) {
100 context->fillRect(IntRect(borderRect.location(), IntSize(1, height())), borderStartEdgeColor(), colorSpace);
101 context->fillRect(IntRect(IntPoint(borderRect.maxX() - 1, borderRect.y()), IntSize(1, height())), borderEndEdgeColor(), colorSpace);
105 void RenderFrameSet::paintRowBorder(const PaintInfo& paintInfo, const IntRect& borderRect) argument
107 if (!paintInfo.rect.intersects(borderRect))
115 context->fillRect(borderRect, frameSetElemen
[all...]
H A DSimpleLineLayoutFunctions.cpp49 static void paintDebugBorders(GraphicsContext& context, LayoutRect borderRect, const LayoutPoint& paintOffset) argument
51 borderRect.moveBy(paintOffset);
52 IntRect snappedRect = pixelSnappedIntRect(borderRect);
H A DRenderTableCell.cpp1172 IntRect borderRect = pixelSnappedIntRect(paintRect.x() - leftWidth / 2, local
1190 borders.addBorder(topVal, BSTop, renderTop, borderRect.x(), borderRect.y(), borderRect.maxX(), borderRect.y() + topWidth, topStyle);
1191 borders.addBorder(bottomVal, BSBottom, renderBottom, borderRect.x(), borderRect.maxY() - bottomWidth, borderRect.maxX(), borderRect.maxY(), bottomStyle);
1192 borders.addBorder(leftVal, BSLeft, renderLeft, borderRect
[all...]
H A DRenderWidget.cpp273 LayoutRect borderRect = LayoutRect(adjustedPaintOffset, size()); local
275 if (borderRect.isEmpty())
280 FloatRoundedRect roundedInnerRect = FloatRoundedRect(style().getRoundedInnerBorderFor(borderRect,
282 clipRoundedInnerRect(paintInfo.context, borderRect, roundedInnerRect);
H A DRenderBoxModelObject.cpp513 RoundedRect RenderBoxModelObject::getBackgroundRoundedRect(const LayoutRect& borderRect, InlineFlowBox* box, LayoutUnit inlineBoxWidth, LayoutUnit inlineBoxHeight, argument
516 RoundedRect border = style().getRoundedBorderFor(borderRect, includeLogicalLeftEdge, includeLogicalRightEdge);
574 RoundedRect RenderBoxModelObject::backgroundRoundedRectAdjustedForBleedAvoidance(const GraphicsContext& context, const LayoutRect& borderRect, BackgroundBleedAvoidance bleedAvoidance, InlineFlowBox* box, const LayoutSize& boxSize, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
578 return getBackgroundRoundedRect(shrinkRectByOneDevicePixel(context, borderRect, document().deviceScaleFactor()), box, boxSize.width(), boxSize.height(),
582 return style().getRoundedInnerBorderFor(borderRect, includeLogicalLeftEdge, includeLogicalRightEdge);
584 return getBackgroundRoundedRect(borderRect, box, boxSize.width(), boxSize.height(), includeLogicalLeftEdge, includeLogicalRightEdge);
1892 void RenderBoxModelObject::drawBoxSideFromPath(GraphicsContext* graphicsContext, const LayoutRect& borderRect, const Path& borderPath, const BorderEdge edges[], argument
1968 RoundedRect innerClip = style.getRoundedInnerBorderFor(borderRect,
1973 drawBoxSideFromPath(graphicsContext, borderRect, borderPath, edges, thickness, drawThickness, side, style, color, SOLID, bleedAvoidance, includeLogicalLeftEdge, includeLogicalRightEdge);
1979 LayoutRect outerRect = borderRect;
[all...]
H A DRenderReplaced.cpp167 LayoutRect borderRect = LayoutRect(adjustedPaintOffset, size()); local
169 if (borderRect.isEmpty())
H A DRenderBlock.cpp2576 LayoutRect borderRect = borderBoxRect(); local
2577 borderRect.moveBy(adjustedLocation);
2578 RoundedRect border = style().getRoundedBorderFor(borderRect);
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DRenderStyle.cpp1070 RoundedRect RenderStyle::getRoundedBorderFor(const LayoutRect& borderRect, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
1072 RoundedRect roundedRect(borderRect);
1074 RoundedRect::Radii radii = calcRadiiFor(surround->border, borderRect.size());
1075 radii.scale(calcBorderRadiiConstraintScaleFor(borderRect, radii));
1081 RoundedRect RenderStyle::getRoundedInnerBorderFor(const LayoutRect& borderRect, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) const argument
1090 return getRoundedInnerBorderFor(borderRect, topWidth, bottomWidth, leftWidth, rightWidth, includeLogicalLeftEdge, includeLogicalRightEdge);
1093 RoundedRect RenderStyle::getRoundedInnerBorderFor(const LayoutRect& borderRect, LayoutUnit topWidth, LayoutUnit bottomWidth, argument
1096 LayoutRect innerRect(borderRect.x() + leftWidth,
1097 borderRect.y() + topWidth,
1098 borderRect
[all...]
H A DRenderStyle.h1243 RoundedRect getRoundedBorderFor(const LayoutRect& borderRect, bool includeLogicalLeftEdge = true, bool includeLogicalRightEdge = true) const;
1244 RoundedRect getRoundedInnerBorderFor(const LayoutRect& borderRect, bool includeLogicalLeftEdge = true, bool includeLogicalRightEdge = true) const;
1246 RoundedRect getRoundedInnerBorderFor(const LayoutRect& borderRect, LayoutUnit topWidth, LayoutUnit bottomWidth,

Completed in 266 milliseconds