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

12

/external/webkit/Source/WebKit2/Shared/
H A DUpdateInfo.cpp36 encoder->encode(scrollRect);
47 if (!decoder->decode(result.scrollRect))
H A DUpdateInfo.h53 WebCore::IntRect scrollRect; member in class:WebKit::UpdateInfo
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DBackingStoreMac.mm100 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
116 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
126 CGContextClipToRect(layerContext, scrollRect);
137 CGContextClipToRect(m_bitmapContext.get(), scrollRect);
138 CGPoint destination = CGPointMake(scrollRect.x() + scrollOffset.width(), scrollRect.y() + scrollOffset.height());
139 paintBitmapContext(m_bitmapContext.get(), m_bitmapContext.get(), destination, scrollRect);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DBackingStoreWin.cpp83 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
105 RECT winScrollRect = scrollRect;
/external/skia/legacy/src/core/
H A DSkBitmap_scroll.cpp11 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, function in class:SkBitmap
19 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/webkit/Source/WebKit2/WebProcess/WebPage/
H A DDrawingAreaImpl.cpp101 void DrawingAreaImpl::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
108 m_layerTreeHost->scrollNonCompositedContents(scrollRect, scrollOffset);
115 if (!m_scrollRect.isEmpty() && scrollRect != m_scrollRect) {
116 unsigned scrollArea = scrollRect.width() * scrollRect.height();
122 setNeedsDisplay(scrollRect);
133 Region dirtyRegionInScrollRect = intersect(scrollRect, m_dirtyRegion);
137 m_dirtyRegion.subtract(scrollRect);
140 Region movedDirtyRegionInScrollRect = intersect(translate(dirtyRegionInScrollRect, scrollOffset), scrollRect);
147 Region scrollRepaintRegion = subtract(scrollRect, translat
[all...]
H A DChunkedUpdateDrawingArea.h43 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DChunkedUpdateDrawingArea.cpp53 void ChunkedUpdateDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
56 setNeedsDisplay(scrollRect);
H A DDrawingArea.h61 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
H A DDrawingAreaImpl.h51 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DLayerTreeHost.h58 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
H A DTiledDrawingArea.h46 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta);
H A DTiledDrawingArea.cpp59 void TiledDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollDelta) argument
62 setNeedsDisplay(scrollRect);
/external/webkit/Source/WebKit/chromium/public/
H A DWebPluginContainer.h52 virtual void scrollRect(int dx, int dy, const WebRect&) = 0;
/external/webkit/Source/WebKit2/UIProcess/
H A DBackingStore.h71 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DDrawingAreaProxyImpl.cpp248 bool shouldScroll = !updateInfo.scrollRect.isEmpty();
251 m_webPageProxy->scrollView(updateInfo.scrollRect, updateInfo.scrollOffset);
H A DPageClient.h62 // Tell the view to scroll scrollRect by scrollOffset.
63 virtual void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
H A DLayerTreeHostCA.h63 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DLayerTreeHostCA.cpp123 void LayerTreeHostCA::scrollNonCompositedContents(const IntRect& scrollRect, const IntSize& scrollOffset) argument
125 setNonCompositedContentsNeedDisplay(scrollRect);
/external/webkit/Source/WebKit/chromium/src/
H A DWebPopupMenuImpl.h113 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
H A DWebPluginContainerImpl.h85 virtual void scrollRect(int dx, int dy, const WebRect&);
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DPageClientImpl.mm142 void PageClientImpl::scrollView(const IntRect& scrollRect, const IntSize& scrollOffset)
144 NSRect clippedScrollRect = NSIntersectionRect(scrollRect, NSOffsetRect(scrollRect, -scrollOffset.width(), -scrollOffset.height()));
147 [m_wkView scrollRect:clippedScrollRect by:scrollOffset];
H A DPageClientImpl.h55 virtual void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage_p.h54 virtual void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);

Completed in 328 milliseconds

12