Searched defs:scrollRect (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/painting/
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);
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:blink::PaintAggregator
335 IntRect scrollRect = m_update.scrollRect; local
[all...]
/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/Source/web/
H A DWebPopupMenuImpl.cpp357 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) argument
H A DWebPluginContainerImpl.cpp379 void WebPluginContainerImpl::scrollRect(int dx, int dy, const WebRect& rect) function in class:blink::WebPluginContainerImpl
H A DChromeClientImpl.cpp507 const IntSize& scrollDelta, const IntRect& scrollRect,
514 m_webView->client()->didScrollRect(dx, dy, intersection(scrollRect, clipRect));
506 scroll( const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListBox.cpp363 IntRect scrollRect = pixelSnappedIntRect(paintOffset.x() + scrollbarLeft(), local
367 m_vBar->setFrameRect(scrollRect);
743 IntRect scrollRect = rect; local
745 scrollRect.move(borderLeft(), borderTop());
747 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
748 repaintRectangle(scrollRect);
H A DRenderLayerScrollableArea.cpp185 IntRect scrollRect = rect; local
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);

Completed in 201 milliseconds