Lines Matching refs:paintRect

46     LayoutRect paintRect = m_renderBox.borderBoxRect();
47 paintRect.moveBy(paintOffset);
48 paintBoxDecorationBackgroundWithRect(paintInfo, paintOffset, paintRect);
51 void BoxPainter::paintBoxDecorationBackgroundWithRect(PaintInfo& paintInfo, const LayoutPoint& paintOffset, const LayoutRect& paintRect)
59 paintBoxShadow(paintInfo, paintRect, style, Normal);
64 RoundedRect border = style->getRoundedBorderFor(paintRect);
70 IntRect snappedPaintRect(pixelSnappedIntRect(paintRect));
74 paintBorder(m_renderBox, paintInfo, paintRect, style, boxDecorationData.bleedAvoidance());
76 paintBackground(paintInfo, paintRect, boxDecorationData.backgroundColor, boxDecorationData.bleedAvoidance());
81 paintBoxShadow(paintInfo, paintRect, style, Inset);
87 paintBorder(m_renderBox, paintInfo, paintRect, style, boxDecorationData.bleedAvoidance());
101 void BoxPainter::paintBackground(const PaintInfo& paintInfo, const LayoutRect& paintRect, const Color& backgroundColor, BackgroundBleedAvoidance bleedAvoidance)
111 paintFillLayers(paintInfo, backgroundColor, m_renderBox.style()->backgroundLayers(), paintRect, bleedAvoidance);
497 LayoutRect paintRect = LayoutRect(paintOffset, m_renderBox.size());
498 paintMaskImages(paintInfo, paintRect);
501 void BoxPainter::paintMaskImages(const PaintInfo& paintInfo, const LayoutRect& paintRect)
528 paintFillLayers(paintInfo, Color::transparent, m_renderBox.style()->maskLayers(), paintRect, BackgroundBleedNone, compositeOp);
529 paintNinePieceImage(m_renderBox, paintInfo.context, paintRect, m_renderBox.style(), m_renderBox.style()->maskBoxImage(), compositeOp);
548 LayoutRect paintRect = LayoutRect(paintOffset, m_renderBox.size());
549 paintInfo.context->fillRect(pixelSnappedIntRect(paintRect), Color::black);
622 void BoxPainter::calculateBackgroundImageGeometry(RenderBoxModelObject& obj, const RenderLayerModelObject* paintContainer, const FillLayer& fillLayer, const LayoutRect& paintRect,
628 IntRect snappedPaintRect = pixelSnappedIntRect(paintRect);
670 positioningAreaSize = pixelSnappedIntSize(paintRect.size() - LayoutSize(left + right, top + bottom), paintRect.location());
1842 void BoxPainter::paintBoxShadow(const PaintInfo& info, const LayoutRect& paintRect, const RenderStyle* s, ShadowStyle shadowStyle, bool includeLogicalLeftEdge, bool includeLogicalRightEdge)
1849 RoundedRect border = (shadowStyle == Inset) ? s->getRoundedInnerBorderFor(paintRect, includeLogicalLeftEdge, includeLogicalRightEdge)
1850 : s->getRoundedBorderFor(paintRect, includeLogicalLeftEdge, includeLogicalRightEdge);