HomeSort by relevance Sort by last modified time
    Searched refs:paintRect (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderFieldset.cpp 144 LayoutRect paintRect(paintOffset, size());
154 paintRect.setHeight(paintRect.height() - yOff);
155 paintRect.setY(paintRect.y() + yOff);
158 paintRect.setWidth(paintRect.width() - xOff);
159 paintRect.setX(paintRect.x() + xOff);
163 paintBoxShadow(paintInfo, paintRect, style(), Normal)
    [all...]
RenderHTMLCanvas.cpp 58 LayoutRect paintRect = replacedContentRect();
59 paintRect.moveBy(paintOffset);
61 bool clip = !contentRect.contains(paintRect);
73 toHTMLCanvasElement(node())->paint(context, paintRect);
RenderWidget.cpp 166 IntRect paintRect = paintInfo.rect;
170 // not the root. In this case, shift the CTM and adjust the paintRect to be root-relative to fix plug-in drawing.
173 paintRect.move(-widgetPaintOffset);
175 widget->paint(paintInfo.context, paintRect);
InlineFlowBox.cpp     [all...]
RenderTableCell.cpp     [all...]
RenderImage.cpp 359 LayoutRect paintRect = replacedContentRect();
360 paintRect.moveBy(paintOffset);
361 bool clip = !contentRect.contains(paintRect);
367 paintIntoRect(context, paintRect);
RenderReplaced.cpp 128 LayoutRect paintRect = LayoutRect(adjustedPaintOffset, size());
130 paintOutline(paintInfo, paintRect);
154 RoundedRect roundedInnerRect = style()->getRoundedInnerBorderFor(paintRect,
156 clipRoundedInnerRect(paintInfo.context, paintRect, roundedInnerRect);
RenderBox.cpp     [all...]
RenderBoxModelObject.h 254 void calculateBackgroundImageGeometry(const RenderLayerModelObject* paintContainer, const FillLayer*, const LayoutRect& paintRect, BackgroundImageGeometry&, RenderObject* = 0) const;
RenderTreeAsText.cpp 577 const LayoutRect& paintRect, int indent, RenderAsTextBehavior behavior)
580 LayoutRect paintDirtyRect(paintRect);
RenderBoxModelObject.cpp     [all...]
RenderBox.h 579 void applyCachedClipAndScrollOffsetForRepaint(LayoutRect& paintRect) const;
    [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PaintAggregatorTest.cpp 209 IntRect paintRect(4, 4, 2, 2);
210 greg.invalidateRect(paintRect);
221 EXPECT_EQ(paintRect, update.paintRects[0]);
228 IntRect paintRect(4, 4, 2, 2);
229 greg.invalidateRect(paintRect);
242 paintRect.move(2, 0);
245 EXPECT_EQ(paintRect, update.paintRects[0]);
282 IntRect paintRect(0, 0, 10, 9); // Repaint 90%
283 greg.invalidateRect(paintRect);
299 IntRect paintRect(0, 0, 10, 9); // Repaint 90
    [all...]
WebViewTest.cpp 296 WebCore::IntRect paintRect(0, 0, kWidth, kHeight);
297 WebCore::LayerPaintingInfo paintingInfo(rootLayer, paintRect, WebCore::PaintBehaviorNormal, WebCore::LayoutSize());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/painting/
PaintAggregator.h 82 WebCore::IntRect scrollPaintRect(const WebCore::IntRect& paintRect, int dx, int dy) const;
PaintAggregator.cpp 297 IntRect PaintAggregator::scrollPaintRect(const IntRect& paintRect, int dx, int dy) const
299 IntRect result = paintRect;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPopupMenuImpl.cpp 372 void WebPopupMenuImpl::invalidateContentsAndRootView(const IntRect& paintRect)
374 if (paintRect.isEmpty())
377 m_client->didInvalidateRect(paintRect);
379 m_rootLayer->layer()->invalidateRect(FloatRect(paintRect));
WebPagePopupImpl.cpp 93 virtual void invalidateContentsAndRootView(const IntRect& paintRect) OVERRIDE
95 if (paintRect.isEmpty())
97 m_popup->widgetClient()->didInvalidateRect(paintRect);
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeMacNonOverlayAPI.mm 213 IntRect paintRect(buttonRect);
215 paintRect.setWidth(cRealButtonLength[controlSize]);
217 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
219 paintRect.setHeight(cRealButtonLength[controlSize]);
221 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));
224 return paintRect;
ScrollView.cpp 774 IntRect paintRect = rect;
776 paintRect.intersect(visibleContentRect());
777 if (paintRect.isEmpty())
781 window->invalidateContentsAndRootView(contentsToWindow(paintRect));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceFilter.cpp 121 IntRect paintRect = filter->sourceImageRect();
123 if (paintRect.isEmpty())
126 OwnPtr<ImageBufferSurface> surface = adoptPtr(new UnacceleratedImageBufferSurface(paintRect.size()));
134 imageContext->translate(-paintRect.x(), -paintRect.y());
  /external/chromium_org/third_party/skia/src/gpu/
SkGpuDevice.cpp     [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterEffect.cpp 162 void FilterEffect::addAbsolutePaintRect(const FloatRect& paintRect)
164 IntRect intPaintRect(enclosingIntRect(paintRect));

Completed in 675 milliseconds

1 2