Searched refs:scrollRect (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DPaintAggregatorTest.cpp58 EXPECT_TRUE(update.scrollRect.isEmpty());
80 EXPECT_TRUE(update.scrollRect.isEmpty());
105 EXPECT_TRUE(update.scrollRect.isEmpty());
117 greg.scrollRect(delta.x(), delta.y(), rect);
124 EXPECT_FALSE(update.scrollRect.isEmpty());
126 EXPECT_EQ(rect, update.scrollRect);
143 greg.scrollRect(delta1.x(), delta1.y(), rect);
144 greg.scrollRect(delta2.x(), delta2.y(), rect);
151 EXPECT_FALSE(update.scrollRect.isEmpty());
153 EXPECT_EQ(rect, update.scrollRect);
[all...]
/external/chromium_org/third_party/WebKit/Source/web/painting/
H A DPaintAggregator.cpp133 damagedRect.setY(scrollRect.y());
134 damagedRect.setHeight(scrollRect.height());
136 damagedRect.setX(scrollRect.x());
139 damagedRect.setX(scrollRect.maxX() + dx);
144 damagedRect.setX(scrollRect.x());
145 damagedRect.setWidth(scrollRect.width());
147 damagedRect.setY(scrollRect.y());
150 damagedRect.setY(scrollRect.maxY() + dy);
156 return intersection(scrollRect, damagedRect);
169 return !m_update.scrollRect
242 void PaintAggregator::scrollRect(int dx, int dy, const IntRect& clipRect) function in class:WebKit::PaintAggregator
335 IntRect scrollRect = m_update.scrollRect; local
[all...]
H A DPaintAggregator.h44 // This structure describes an aggregation of invalidateRect and scrollRect
45 // calls. If |scrollRect| is non-empty, then that rect should be scrolled
47 // then those rects should be repainted. If |scrollRect| and |paintRects|
55 // Returns the rect damaged by scrolling within |scrollRect| by
63 WebCore::IntRect scrollRect; member in struct:WebKit::PaintAggregator::PendingUpdate
67 // There is a PendingUpdate if invalidateRect or scrollRect were called and
79 void scrollRect(int dx, int dy, const WebCore::IntRect& clipRect);
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, function in class:SkBitmap
23 tmp.scrollRect(NULL, dx, dy, inval);
/external/skia/src/core/
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, function in class:SkBitmap
23 tmp.scrollRect(NULL, dx, dy, inval);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebPluginContainer.h62 virtual void scrollRect(int dx, int dy, const WebRect&) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPagePopupImpl.cpp104 virtual void scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) OVERRIDE
106 m_popup->widgetClient()->didScrollRect(scrollDelta.width(), scrollDelta.height(), intersection(scrollRect, clipRect));
H A DWebPluginContainerImpl.h101 virtual void scrollRect(int dx, int dy, const WebRect&);
H A DWebPopupMenuImpl.h117 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
H A DWebPopupMenuImpl.cpp356 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) argument
H A DChromeClientImpl.cpp500 const IntSize& scrollDelta, const IntRect& scrollRect,
507 m_webView->client()->didScrollRect(dx, dy, intersection(scrollRect, clipRect));
499 scroll( const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) argument
H A DWebPluginContainerImpl.cpp371 void WebPluginContainerImpl::scrollRect(int dx, int dy, const WebRect& rect) function in class:WebKit::WebPluginContainerImpl
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin_backing_store.cc92 bitmap_.scrollRect(&rect, pixel_delta.x(), pixel_delta.y());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListBox.cpp356 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + width() - borderRight() - m_vBar->width(), local
360 m_vBar->setFrameRect(scrollRect);
735 IntRect scrollRect = rect; local
736 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
737 repaintRectangle(scrollRect);
H A DRenderLayer.cpp2784 IntRect scrollRect = rect; local
2792 scrollRect.move(verticalScrollbarStart(0, box->width()), box->borderTop());
2794 scrollRect.move(horizontalScrollbarStart(0), box->height() - box->borderBottom() - scrollbar->height());
2795 renderer()->repaintRectangle(scrollRect);
/external/chromium_org/content/browser/renderer_host/
H A Dbacking_store_aura.cc156 bitmap_.scrollRect(&rect, pixel_delta.x(), pixel_delta.y());
/external/skia/gm/
H A Dbitmapscroll.cpp12 /** Create a bitmap image suitable for testing SkBitmap::scrollRect().
132 // scrollRect() should always return true, even if it's a no-op
137 SkDEBUGCODE(bool scrollRectReturnValue = )scrolledBitmap.scrollRect(
/external/chromium_org/third_party/skia/include/core/
H A DSkBitmap.h441 bool scrollRect(const SkIRect* subset, int dx, int dy,
/external/skia/include/core/
H A DSkBitmap.h441 bool scrollRect(const SkIRect* subset, int dx, int dy,
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc642 container_->scrollRect(dx, dy, rect);

Completed in 245 milliseconds