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

12

/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DUpdateInfo.cpp37 encoder << scrollRect; local
52 if (!decoder.decode(result.scrollRect))
H A DUpdateInfo.h54 WebCore::IntRect scrollRect; member in class:WebKit::UpdateInfo
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DGtkWidgetBackingStoreX11.h35 void scroll(const IntRect& scrollRect, const IntSize& scrollOffset);
H A DGtkWidgetBackingStoreX11.cpp63 void WidgetBackingStoreGtkX11::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
65 IntRect targetRect(scrollRect);
67 targetRect.intersect(scrollRect);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DBackingStoreQt.cpp51 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
67 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
72 m_pixmap.scroll(scrollOffset.width(), scrollOffset.height(), scrollRect);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollableArea.cpp420 IntRect scrollRect(scrollPosition + scrollOrigin - IntSize(0, headerHeight), idealScrollRectSize);
424 scrollRect.intersect(documentRect);
426 if (scrollRect.size() != idealScrollRectSize) {
428 scrollRect.setSize(idealScrollRectSize);
431 scrollRect.intersect(documentRect);
432 if (scrollRect.width() < idealScrollRectSize.width())
433 scrollRect.move(-(idealScrollRectSize.width() - scrollRect.width()), 0);
434 if (scrollRect.height() < idealScrollRectSize.height())
435 scrollRect
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/cairo/
H A DBackingStoreCairo.cpp81 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
95 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
101 m_backingStore->scroll(scrollRect, scrollOffset);
/macosx-10.9.5/WebCore-7537.78.1/platform/cairo/
H A DWidgetBackingStoreCairo.cpp64 void WidgetBackingStoreCairo::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) argument
66 IntRect targetRect(scrollRect);
H A DWidgetBackingStore.h50 virtual void scroll(const IntRect& scrollRect, const IntSize& scrollOffset) = 0;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/mac/
H A DRemoteLayerTreeDrawingArea.mm58 void RemoteLayerTreeDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollDelta)
H A DRemoteLayerTreeDrawingArea.h47 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta) OVERRIDE;
H A DLayerTreeHostMac.h57 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect) OVERRIDE;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DDrawingAreaImpl.cpp119 void DrawingAreaImpl::scroll(const IntRect& scrollRect, const IntSize& scrollDelta) argument
129 m_layerTreeHost->scrollNonCompositedContents(scrollRect);
136 if (scrollRect.isEmpty())
139 if (!m_scrollRect.isEmpty() && scrollRect != m_scrollRect) {
140 unsigned scrollArea = scrollRect.width() * scrollRect.height();
146 setNeedsDisplayInRect(scrollRect);
157 Region dirtyRegionInScrollRect = intersect(scrollRect, m_dirtyRegion);
161 m_dirtyRegion.subtract(scrollRect);
164 Region movedDirtyRegionInScrollRect = intersect(translate(dirtyRegionInScrollRect, scrollDelta), scrollRect);
[all...]
H A DLayerTreeHost.h70 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect) = 0;
H A DDrawingArea.h66 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta) = 0;
H A DDrawingAreaImpl.h56 virtual void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollDelta);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DBackingStoreMac.mm191 scroll(updateInfo.scrollRect, updateInfo.scrollOffset);
212 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
217 ASSERT(!scrollRect.isEmpty());
219 if (!m_scrolledRect.isEmpty() && m_scrolledRect != scrollRect)
222 m_scrolledRect = scrollRect;
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DAcceleratedCompositingContext.h72 void scrollNonCompositedContents(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DAcceleratedCompositingContextClutter.cpp181 void AcceleratedCompositingContext::scrollNonCompositedContents(const IntRect& scrollRect, const IntSize& scrollOffset) argument
183 m_nonCompositedContentLayer->setNeedsDisplayInRect(scrollRect);
H A DAcceleratedCompositingContextGL.cpp306 void AcceleratedCompositingContext::scrollNonCompositedContents(const IntRect& scrollRect, const IntSize& scrollOffset) argument
308 m_nonCompositedContentLayer->setNeedsDisplayInRect(scrollRect);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DBackingStore.h78 void scroll(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset);
H A DDrawingAreaProxyImpl.cpp281 bool shouldScroll = !updateInfo.scrollRect.isEmpty();
284 m_webPageProxy->scrollView(updateInfo.scrollRect, updateInfo.scrollOffset);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/gtk/
H A DLayerTreeHostGtk.h71 virtual void scrollNonCompositedContents(const WebCore::IntRect& scrollRect);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DPageClientImpl.cpp85 void PageClientImpl::scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset) argument
87 setViewNeedsDisplay(scrollRect);
/macosx-10.9.5/tcl-102/tk84/tk/macosx/
H A DtkMacOSXDraw.c1448 Rect scrollRect;
1455 * scrollRect is the source rect extended by the offset (the union
1457 * in the extended scrollRect is scrolled. On X, it's possible
1462 scrollRect.left = destDraw->xOff + x;
1463 scrollRect.top = destDraw->yOff + y;
1464 scrollRect.right = scrollRect.left + width;
1465 scrollRect.bottom = scrollRect.top + height;
1467 scrollRect
1432 Rect scrollRect; local
[all...]

Completed in 255 milliseconds

12