HomeSort by relevance Sort by last modified time
    Searched full:scrollviewrect (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit/wx/WebKitSupport/
ChromeClientWx.h 104 virtual void scrollBackingStore(int dx, int dy, const IntRect& scrollViewRect, const IntRect& clipRect);
ChromeClientWx.cpp 394 const IntRect& scrollViewRect,
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 638 IntRect scrollViewRect = convertToContainingWindow(IntRect(0, 0, visibleWidth(), visibleHeight()));
643 scrollViewRect.setWidth(scrollViewRect.width() - verticalScrollbarWidth);
644 scrollViewRect.setHeight(scrollViewRect.height() - horizontalScrollbarHeight);
648 updateRect.intersect(scrollViewRect);
665 if (!scrollContentsFastPath(-scrollDelta, scrollViewRect, clipRect))
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.h 381 void scrollRequested(int dx, int dy, const QRect& scrollViewRect);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp 436 void ChromeClientQt::scroll(const IntSize& delta, const IntRect& scrollViewRect, const IntRect&)
439 platformPageClient()->scroll(delta.width(), delta.height(), scrollViewRect);
440 emit m_webPage->scrollRequested(delta.width(), delta.height(), scrollViewRect);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 484 void WebChromeClient::scroll(const IntSize& delta, const IntRect& scrollViewRect, const IntRect& clipRect)
488 m_webView->scrollBackingStore(core(m_webView->topLevelFrame())->view(), delta.width(), delta.height(), scrollViewRect, clipRect);
  /external/webkit/Source/WebKit/win/
WebView.h 852 void scrollBackingStore(WebCore::FrameView*, int dx, int dy, const WebCore::IntRect& scrollViewRect, const WebCore::IntRect& clipRect);
    [all...]
WebView.cpp 829 void WebView::scrollBackingStore(FrameView* frameView, int dx, int dy, const IntRect& scrollViewRect, const IntRect& clipRect)
835 m_backingLayer->setNeedsDisplayInRect(scrollViewRect);
859 RECT scrollRectWin(scrollViewRect);
    [all...]

Completed in 103 milliseconds