Searched refs:scrollDelta (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebCore/platform/
H A DHostWindow.h48 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) = 0;
H A DScrollView.cpp395 IntSize scrollDelta = newOffset - m_scrollOffset; local
396 if (scrollDelta == IntSize())
424 scrollContents(scrollDelta);
661 void ScrollView::scrollContents(const IntSize& scrollDelta) argument
687 int panIconDirtySquareSizeLength = 2 * (panIconSizeLength + max(abs(scrollDelta.width()), abs(scrollDelta.height()))); // We only want to repaint what's necessary
696 if (!scrollContentsFastPath(-scrollDelta, scrollViewRect, clipRect))
720 bool ScrollView::scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) argument
722 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect);
H A DScrollView.h208 void scrollContents(const IntSize& scrollDelta);
326 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
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
/external/webkit/Source/WebKit/chromium/src/win/
H A DWebInputEventFactory.cpp425 float scrollDelta = wheelDelta; local
431 scrollDelta *= static_cast<float>(scrollChars) * scrollbarPixelsPerLine;
438 scrollDelta *= static_cast<float>(scrollLines) * scrollbarPixelsPerLine;
444 result.deltaX = scrollDelta;
447 result.deltaY = scrollDelta;
/external/webkit/Source/WebKit/chromium/src/
H A DWebPopupMenuImpl.cpp300 void WebPopupMenuImpl::scroll(const IntSize& scrollDelta, argument
305 int dx = scrollDelta.width();
306 int dy = scrollDelta.height();
H A DWebPopupMenuImpl.h113 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
H A DChromeClientImpl.cpp548 const IntSize& scrollDelta, const IntRect& scrollRect,
556 int dx = scrollDelta.width();
557 int dy = scrollDelta.height();
562 m_webView->scrollRootLayerRect(scrollDelta, clipRect);
547 scroll( const IntSize& scrollDelta, const IntRect& scrollRect, const IntRect& clipRect) argument
H A DWebPluginContainerImpl.cpp287 IntSize scrollDelta(dx, dy);
290 parent()->hostWindow()->scroll(scrollDelta, damageRect, damageRect);
H A DChromeClientImpl.h116 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll,
H A DWebViewImpl.h340 void scrollRootLayerRect(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& clipRect);
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.cpp512 void ChromeClientEfl::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) argument
514 ewk_view_scroll(m_view, scrollDelta.width(), scrollDelta.height(), rectToScroll.x(), rectToScroll.y(), rectToScroll.width(), rectToScroll.height(), clipRect.x(), clipRect.y(), clipRect.width(), clipRect.height(), EINA_TRUE);
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.h110 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
H A DChromeClientHaiku.cpp281 void ChromeClientHaiku::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) argument
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.h110 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
/external/webkit/Source/WebCore/page/
H A DChrome.cpp85 void Chrome::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) argument
87 m_client->scroll(scrollDelta, rectToScroll, clipRect);
H A DFrameView.h282 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
H A DFrameView.cpp1262 bool FrameView::scrollContentsFastPath(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) argument
1271 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect);
1299 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect);
1306 scrolledRect.move(scrollDelta);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DChromeClientAndroid.h118 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
H A DChromeClientAndroid.cpp325 void ChromeClientAndroid::scroll(const IntSize& scrollDelta, argument
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.h101 virtual void scroll(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll, const WebCore::IntRect& clipRect);
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebChromeClient.h96 virtual void scroll(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll, const WebCore::IntRect& clipRect);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.h119 virtual void scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect);
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebChromeClient.h102 virtual void scroll(const WebCore::IntSize& scrollDelta, const WebCore::IntRect& rectToScroll, const WebCore::IntRect& clipRect);

Completed in 409 milliseconds

12