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

1 2

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

Completed in 289 milliseconds

1 2