Searched defs:paintRect (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
H A DSourceAlpha.cpp49 FloatRect paintRect = filter->sourceImageRect(); local
50 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
51 setAbsolutePaintRect(enclosingIntRect(paintRect));
H A DSourceGraphic.cpp48 FloatRect paintRect = filter->sourceImageRect(); local
49 paintRect.scale(filter->filterResolution().width(), filter->filterResolution().height());
50 setAbsolutePaintRect(enclosingIntRect(paintRect));
H A DFEOffset.cpp119 FloatRect paintRect = inputEffect(0)->absolutePaintRect(); local
121 paintRect.move(filter->applyHorizontalScale(m_dx), filter->applyVerticalScale(m_dy));
123 paintRect.intersect(maxEffectRect());
125 paintRect.unite(maxEffectRect());
126 setAbsolutePaintRect(enclosingIntRect(paintRect));
H A DFEMorphology.cpp92 FloatRect paintRect = mapRect(inputEffect(0)->absolutePaintRect()); local
94 paintRect.intersect(maxEffectRect());
96 paintRect.unite(maxEffectRect());
97 setAbsolutePaintRect(enclosingIntRect(paintRect));
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.cpp70 FloatRect paintRect = filter()->absoluteTransform().mapRect(filterPrimitiveSubregion()); local
74 m_preserveAspectRatio.transformRect(paintRect, srcRect);
79 paintRect.intersect(maxEffectRect());
81 paintRect.unite(maxEffectRect());
82 setAbsolutePaintRect(enclosingIntRect(paintRect));
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.cpp214 IntRect paintRect = calculateImageBufferRect(targetRect, absoluteTransform); local
216 if (paintRect.isEmpty())
219 IntSize clampedSize = clampedAbsoluteSize(paintRect.size());
227 imageContext->scale(FloatSize(static_cast<float>(clampedSize.width()) / paintRect.width(),
228 static_cast<float>(clampedSize.height()) / paintRect.height()));
229 imageContext->translate(-paintRect.x(), -paintRect.y());
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPagePopupImpl.cpp97 virtual void invalidateContentsAndRootView(const IntRect& paintRect) OVERRIDE
99 if (paintRect.isEmpty())
101 m_popup->widgetClient()->didInvalidateRect(paintRect); variable
H A DWebPopupMenuImpl.cpp339 void WebPopupMenuImpl::invalidateContentsAndRootView(const IntRect& paintRect) argument
341 if (paintRect.isEmpty())
344 m_client->didInvalidateRect(paintRect);
/external/chromium_org/third_party/WebKit/Source/web/painting/
H A DPaintAggregator.cpp295 IntRect PaintAggregator::scrollPaintRect(const IntRect& paintRect, int dx, int dy) const argument
297 IntRect result = paintRect;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderReplaced.cpp122 LayoutRect paintRect = LayoutRect(adjustedPaintOffset, size()); local
124 paintOutline(paintInfo, paintRect);
148 RoundedRect roundedInnerRect = style()->getRoundedInnerBorderFor(paintRect,
150 clipRoundedInnerRect(paintInfo.context, paintRect, roundedInnerRect);
H A DRenderWidget.cpp233 IntRect paintRect = paintInfo.rect; local
237 // not the root. In this case, shift the CTM and adjust the paintRect to be root-relative to fix plug-in drawing.
240 paintRect.move(-widgetPaintOffset);
242 m_widget->paint(paintInfo.context, paintRect);
H A DRenderTreeAsText.cpp619 const LayoutRect& paintRect, int indent, RenderAsTextBehavior behavior)
636 writeLayers(ts, rootLayer, layer, paintRect, indent + 2, behavior);
651 const LayoutRect& paintRect, int indent, RenderAsTextBehavior behavior)
654 LayoutRect paintDirtyRect(paintRect);
618 writeRenderNamedFlowThreads(TextStream& ts, RenderView* renderView, const RenderLayer* rootLayer, const LayoutRect& paintRect, int indent, RenderAsTextBehavior behavior) argument
650 writeLayers(TextStream& ts, const RenderLayer* rootLayer, RenderLayer* l, const LayoutRect& paintRect, int indent, RenderAsTextBehavior behavior) argument
H A DRenderTableCell.cpp1096 LayoutRect paintRect = LayoutRect(paintOffset + location(), pixelSnappedSize()); local
1097 if (paintRect.y() - table()->outerBorderTop() >= localRepaintRect.maxY())
1100 if (paintRect.maxY() + table()->outerBorderBottom() <= localRepaintRect.y())
1119 IntRect borderRect = pixelSnappedIntRect(paintRect.x() - leftWidth / 2,
1120 paintRect.y() - topWidth / 2,
1121 paintRect.width() + leftWidth / 2 + (rightWidth + 1) / 2,
1122 paintRect.height() + topWidth / 2 + (bottomWidth + 1) / 2);
1197 LayoutRect paintRect = LayoutRect(paintOffset, pixelSnappedSize());
1198 paintBoxShadow(paintInfo, paintRect, style(), Normal);
1203 paintBoxShadow(paintInfo, paintRect, styl
[all...]
H A DInlineFlowBox.cpp1197 void InlineFlowBox::paintBoxShadow(const PaintInfo& info, RenderStyle* s, ShadowStyle shadowStyle, const LayoutRect& paintRect) argument
1200 boxModelObject()->paintBoxShadow(info, paintRect, s, shadowStyle);
1204 boxModelObject()->paintBoxShadow(info, paintRect, s, shadowStyle, includeLogicalLeftEdge(), includeLogicalRightEdge());
1228 static LayoutRect clipRectForNinePieceImageStrip(InlineFlowBox* box, const NinePieceImage& image, const LayoutRect& paintRect) argument
1230 LayoutRect clipRect(paintRect);
1234 clipRect.setY(paintRect.y() - outsets.top());
1235 clipRect.setHeight(paintRect.height() + outsets.top() + outsets.bottom());
1237 clipRect.setX(paintRect.x() - outsets.left());
1238 clipRect.setWidth(paintRect.width() + outsets.left());
1243 clipRect.setX(paintRect
1276 LayoutRect paintRect = LayoutRect(adjustedPaintoffset, frameRect.size()); local
1362 LayoutRect paintRect = LayoutRect(adjustedPaintOffset, frameRect.size()); local
[all...]
H A DRenderBoxModelObject.cpp990 void RenderBoxModelObject::calculateBackgroundImageGeometry(const FillLayer* fillLayer, const LayoutRect& paintRect, argument
996 IntRect snappedPaintRect = pixelSnappedIntRect(paintRect);
1039 positioningAreaSize = pixelSnappedIntSize(paintRect.size() - LayoutSize(left + right, top + bottom), paintRect.location());
2413 void RenderBoxModelObject::paintBoxShadow(const PaintInfo& info, const LayoutRect& paintRect, const RenderStyle* s, ShadowStyle shadowStyle, bool includeLogicalLeftEdge, bool includeLogicalRightEdge) argument
2420 RoundedRect border = (shadowStyle == Inset) ? s->getRoundedInnerBorderFor(paintRect, includeLogicalLeftEdge, includeLogicalRightEdge)
2421 : s->getRoundedBorderFor(paintRect, view(), includeLogicalLeftEdge, includeLogicalRightEdge);
H A DRenderObject.cpp1153 void RenderObject::paintOutline(PaintInfo& paintInfo, const LayoutRect& paintRect) argument
1166 paintFocusRing(paintInfo, paintRect.location(), styleToUse);
1173 IntRect inner = pixelSnappedIntRect(paintRect);
H A DRenderBox.cpp870 void RenderBox::applyCachedClipAndScrollOffsetForRepaint(LayoutRect& paintRect) const
872 paintRect.move(-scrolledContentOffset()); // For overflow:auto/scroll/hidden.
882 paintRect = intersection(paintRect, clipRect);
1139 LayoutRect paintRect = borderBoxRectInRegion(paintInfo.renderRegion);
1140 paintRect.moveBy(paintOffset);
1147 paintBoxShadow(paintInfo, paintRect, style(), Normal);
1154 RoundedRect border = style()->getRoundedBorderFor(paintRect, view());
1162 IntRect snappedPaintRect(pixelSnappedIntRect(paintRect));
1166 paintBorder(paintInfo, paintRect, styl
1183 paintBackground(const PaintInfo& paintInfo, const LayoutRect& paintRect, BackgroundBleedAvoidance bleedAvoidance) argument
1351 paintMaskImages(const PaintInfo& paintInfo, const LayoutRect& paintRect) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DScrollView.cpp814 IntRect paintRect = rect; local
816 paintRect.intersect(visibleContentRect());
817 if (paintRect.isEmpty())
821 window->invalidateContentsAndRootView(contentsToWindow(paintRect));
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DWebTestProxy.cpp575 paintRect(column);
578 paintRect(line);
612 void WebTestProxyBase::paintRect(const WebRect& rect) function in class:WebTestRunner::WebTestProxyBase
653 paintRect(rect);
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGpuDevice.cpp1302 SkRect paintRect; local
1305 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1339 left = paintRect.left() + border;
1340 right = paintRect.right() - border;
1342 left = right = SkScalarHalf(paintRect.left() + paintRect.right());
1346 top = paintRect.top() + border;
1347 bottom = paintRect.bottom() - border;
1349 top = bottom = SkScalarHalf(paintRect.top() + paintRect
[all...]
/external/skia/src/gpu/
H A DSkGpuDevice.cpp1302 SkRect paintRect; local
1305 paintRect.setLTRB(SkScalarMul(srcRect.fLeft, wInv),
1339 left = paintRect.left() + border;
1340 right = paintRect.right() - border;
1342 left = right = SkScalarHalf(paintRect.left() + paintRect.right());
1346 top = paintRect.top() + border;
1347 bottom = paintRect.bottom() - border;
1349 top = bottom = SkScalarHalf(paintRect.top() + paintRect
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrameView.cpp1664 IntRect paintRect = r; local
1666 paintRect.intersect(visibleContentRect());
1667 if (paintRect.isEmpty())
1677 m_repaintRects.append(paintRect);
1679 m_repaintRects[0].unite(paintRect);

Completed in 383 milliseconds