Searched refs:scrollRect (Results 1 - 22 of 22) 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.cpp135 damagedRect.setY(scrollRect.y());
136 damagedRect.setHeight(scrollRect.height());
138 damagedRect.setX(scrollRect.x());
141 damagedRect.setX(scrollRect.maxX() + dx);
146 damagedRect.setX(scrollRect.x());
147 damagedRect.setWidth(scrollRect.width());
149 damagedRect.setY(scrollRect.y());
152 damagedRect.setY(scrollRect.maxY() + dy);
158 return intersection(scrollRect, damagedRect);
171 return !m_update.scrollRect
244 void PaintAggregator::scrollRect(int dx, int dy, const IntRect& clipRect) function in class:blink::PaintAggregator
337 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:blink::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/WebKit/Source/devtools/front_end/layers/
H A DLayerDetailsView.js118 * @param {!LayerTreeAgent.ScrollRect} scrollRect
121 _createScrollRectElement: function(scrollRect, index)
127 element.textContent = WebInspector.LayerTreeModel.ScrollRectType[scrollRect.type].description + " (" + scrollRect.rect.x + ", " + scrollRect.rect.y +
128 ", " + scrollRect.rect.width + ", " + scrollRect.rect.height + ")";
/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/core/rendering/
H A DRenderListBox.cpp397 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + scrollbarLeft(), local
401 m_vBar->setFrameRect(scrollRect);
774 IntRect scrollRect = rect; local
776 scrollRect.move(borderLeft(), borderTop());
778 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
781 m_verticalBarDamage = scrollRect;
784 invalidatePaintRectangle(scrollRect);
H A DRenderLayerScrollableArea.cpp185 IntRect scrollRect = rect; local
191 scrollRect.move(verticalScrollbarStart(0, box().width()), box().borderTop());
193 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
195 if (scrollRect.isEmpty())
198 LayoutRect repaintRect = scrollRect;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPopupMenuImpl.h124 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
H A DWebPagePopupImpl.cpp100 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));
H A DWebPluginContainerImpl.h104 virtual void scrollRect(int dx, int dy, const WebRect&) OVERRIDE;
H A DWebPopupMenuImpl.cpp391 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) argument
H A DChromeClientImpl.cpp497 const IntSize& scrollDelta, const IntRect& scrollRect,
504 m_webView->client()->didScrollRect(dx, dy, intersection(scrollRect, clipRect));
496 scroll( const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) argument
H A DWebPluginContainerImpl.cpp387 void WebPluginContainerImpl::scrollRect(int dx, int dy, const WebRect& rect) function in class:blink::WebPluginContainerImpl
/external/chromium_org/third_party/skia/gm/
H A Dbitmapscroll.cpp12 /** Create a bitmap image suitable for testing SkBitmap::scrollRect().
133 // scrollRect() should always return true, even if it's a no-op
138 SkDEBUGCODE(bool scrollRectReturnValue = )scrolledBitmap.scrollRect(
/external/skia/gm/
H A Dbitmapscroll.cpp12 /** Create a bitmap image suitable for testing SkBitmap::scrollRect().
133 // scrollRect() should always return true, even if it's a no-op
138 SkDEBUGCODE(bool scrollRectReturnValue = )scrolledBitmap.scrollRect(
/external/chromium_org/third_party/skia/include/core/
H A DSkBitmap.h562 bool scrollRect(const SkIRect* subset, int dx, int dy,
/external/skia/include/core/
H A DSkBitmap.h562 bool scrollRect(const SkIRect* subset, int dx, int dy,
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc759 container_->scrollRect(dx, dy, rect);
/external/chromium_org/third_party/skia/samplecode/
H A DSampleApp.cpp1408 bm.scrollRect(&r, dx, dy, &inval);
/external/skia/samplecode/
H A DSampleApp.cpp1408 bm.scrollRect(&r, dx, dy, &inval);

Completed in 481 milliseconds