/external/webkit/Source/WebKit2/Shared/ |
H A D | UpdateInfo.cpp | 36 encoder->encode(scrollRect); 47 if (!decoder->decode(result.scrollRect))
|
H A D | UpdateInfo.h | 53 WebCore::IntRect scrollRect; member in class:WebKit::UpdateInfo
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
H A D | BackingStoreMac.mm | 100 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 D | BackingStoreWin.cpp | 83 scroll(updateInfo.scrollRect, updateInfo.scrollOffset); 100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument 105 RECT winScrollRect = scrollRect;
|
/external/skia/src/core/ |
H A D | SkBitmap_scroll.cpp | 4 bool SkBitmap::scrollRect(const SkIRect* subset, int dx, int dy, function in class:SkBitmap 12 tmp.scrollRect(NULL, dx, dy, inval);
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
H A D | DrawingAreaImpl.cpp | 101 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 D | ChunkedUpdateDrawingArea.h | 43 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
|
H A D | ChunkedUpdateDrawingArea.cpp | 53 void ChunkedUpdateDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument 56 setNeedsDisplay(scrollRect);
|
H A D | DrawingArea.h | 61 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
|
H A D | DrawingAreaImpl.h | 51 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
|
H A D | LayerTreeHost.h | 58 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) = 0;
|
H A D | TiledDrawingArea.h | 46 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta);
|
H A D | TiledDrawingArea.cpp | 59 void TiledDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollDelta) argument 62 setNeedsDisplay(scrollRect);
|
/external/webkit/Source/WebKit/chromium/public/ |
H A D | WebPluginContainer.h | 52 virtual void scrollRect(int dx, int dy, const WebRect&) = 0;
|
/external/webkit/Source/WebKit2/UIProcess/ |
H A D | BackingStore.h | 71 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
|
H A D | DrawingAreaProxyImpl.cpp | 248 bool shouldScroll = !updateInfo.scrollRect.isEmpty(); 251 m_webPageProxy->scrollView(updateInfo.scrollRect, updateInfo.scrollOffset);
|
H A D | PageClient.h | 62 // 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 D | LayerTreeHostCA.h | 63 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
|
H A D | LayerTreeHostCA.cpp | 123 void LayerTreeHostCA::scrollNonCompositedContents(const IntRect& scrollRect, const IntSize& scrollOffset) argument 125 setNonCompositedContentsNeedDisplay(scrollRect);
|
/external/webkit/Source/WebKit/chromium/src/ |
H A D | WebPopupMenuImpl.h | 113 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
|
H A D | WebPluginContainerImpl.h | 85 virtual void scrollRect(int dx, int dy, const WebRect&);
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
H A D | PageClientImpl.mm | 142 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 D | PageClientImpl.h | 55 virtual void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
|
/external/webkit/Source/WebKit2/UIProcess/API/qt/ |
H A D | qwkpage_p.h | 54 virtual void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
|
/external/webkit/Source/WebKit2/UIProcess/gtk/ |
H A D | WebView.h | 82 virtual void scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
|