Searched defs:scrollDelta (Results 1 - 11 of 11) sorted by relevance

/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/WebKit2/WebProcess/WebPage/
H A DTiledDrawingArea.cpp59 void TiledDrawingArea::scroll(const IntRect& scrollRect, const IntSize& scrollDelta) argument
/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 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 DWebViewImpl.cpp2318 void WebViewImpl::scrollRootLayerRect(const IntSize& scrollDelta, const IntRect& clipRect) argument
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.cpp281 void ChromeClientHaiku::scroll(const IntSize& scrollDelta, const IntRect& rectToScroll, const IntRect& clipRect) argument
/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.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.cpp325 void ChromeClientAndroid::scroll(const IntSize& scrollDelta, argument
/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/WebCore/platform/
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);

Completed in 482 milliseconds