/external/chromium_org/third_party/WebKit/Source/web/tests/ |
PaintAggregatorTest.cpp | 58 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/ |
PaintAggregator.cpp | 133 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.isEmpty() || !m_update.paintRects.isEmpty() [all...] |
PaintAggregator.h | 44 // 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; 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/ |
SkBitmap_scroll.cpp | 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, 23 tmp.scrollRect(NULL, dx, dy, inval);
|
/external/skia/src/core/ |
SkBitmap_scroll.cpp | 11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, 23 tmp.scrollRect(NULL, dx, dy, inval);
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebPluginContainer.h | 62 virtual void scrollRect(int dx, int dy, const WebRect&) = 0;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebPopupMenuImpl.h | 118 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
|
WebPagePopupImpl.cpp | 100 virtual void scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) OVERRIDE 102 m_popup->widgetClient()->didScrollRect(scrollDelta.width(), scrollDelta.height(), intersection(scrollRect, clipRect));
|
WebPluginContainerImpl.h | 104 virtual void scrollRect(int dx, int dy, const WebRect&);
|
WebPopupMenuImpl.cpp | 357 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect)
|
ChromeClientImpl.cpp | 507 const IntSize& scrollDelta, const IntRect& scrollRect, 514 m_webView->client()->didScrollRect(dx, dy, intersection(scrollRect, clipRect)); [all...] |
WebPluginContainerImpl.cpp | 379 void WebPluginContainerImpl::scrollRect(int dx, int dy, const WebRect& rect)
|
/external/chromium_org/content/renderer/browser_plugin/ |
browser_plugin_backing_store.cc | 92 bitmap_.scrollRect(&rect, pixel_delta.x(), pixel_delta.y());
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderListBox.cpp | 363 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + scrollbarLeft(), 367 m_vBar->setFrameRect(scrollRect); 743 IntRect scrollRect = rect; 745 scrollRect.move(borderLeft(), borderTop()); 747 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop()); 748 repaintRectangle(scrollRect);
|
RenderLayerScrollableArea.cpp | 185 IntRect scrollRect = rect; 191 scrollRect.move(verticalScrollbarStart(0, m_box->width()), m_box->borderTop()); 193 scrollRect.move(horizontalScrollbarStart(0), m_box->height() - m_box->borderBottom() - scrollbar->height()); 194 m_box->repaintRectangle(scrollRect); [all...] |
/external/chromium_org/content/browser/renderer_host/ |
backing_store_aura.cc | 156 bitmap_.scrollRect(&rect, pixel_delta.x(), pixel_delta.y());
|
/external/skia/gm/ |
bitmapscroll.cpp | 12 /** 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/ |
SkBitmap.h | 449 bool scrollRect(const SkIRect* subset, int dx, int dy,
|
/external/skia/include/core/ |
SkBitmap.h | 449 bool scrollRect(const SkIRect* subset, int dx, int dy,
|
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_instance_impl.cc | 684 void PepperPluginInstanceImpl::ScrollRect(int dx, 690 fullscreen_container_->ScrollRect(dx, dy, rect); 693 container_->scrollRect(dx, dy, rect); [all...] |