HomeSort by relevance Sort by last modified time
    Searched refs:scrollRect (Results 1 - 20 of 20) sorted by null

  /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 117 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
WebPagePopupImpl.cpp 104 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));
WebPluginContainerImpl.h 101 virtual void scrollRect(int dx, int dy, const WebRect&);
WebPopupMenuImpl.cpp 356 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect)
ChromeClientImpl.cpp 500 const IntSize& scrollDelta, const IntRect& scrollRect,
507 m_webView->client()->didScrollRect(dx, dy, intersection(scrollRect, clipRect));
    [all...]
WebPluginContainerImpl.cpp 371 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 356 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + width() - borderRight() - m_vBar->width(),
360 m_vBar->setFrameRect(scrollRect);
735 IntRect scrollRect = rect;
736 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
737 repaintRectangle(scrollRect);
RenderLayer.cpp     [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 441 bool scrollRect(const SkIRect* subset, int dx, int dy,
  /external/skia/include/core/
SkBitmap.h 441 bool scrollRect(const SkIRect* subset, int dx, int dy,
  /external/chromium_org/content/renderer/pepper/
pepper_plugin_instance_impl.cc 635 void PepperPluginInstanceImpl::ScrollRect(int dx,
639 fullscreen_container_->ScrollRect(dx, dy, rect);
642 container_->scrollRect(dx, dy, rect);
    [all...]

Completed in 848 milliseconds