OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:scrollviewrect
(Results
1 - 8
of
8
) sorted by null
/external/webkit/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp
347
void ChromeClientQt::scroll(const IntSize& delta, const IntRect&
scrollViewRect
, const IntRect&)
350
platformPageClient()->scroll(delta.width(), delta.height(),
scrollViewRect
);
351
emit m_webPage->scrollRequested(delta.width(), delta.height(),
scrollViewRect
);
/external/webkit/WebKit/wx/WebKitSupport/
ChromeClientWx.h
102
virtual void scrollBackingStore(int dx, int dy, const IntRect&
scrollViewRect
, const IntRect& clipRect);
ChromeClientWx.cpp
375
const IntRect&
scrollViewRect
,
/external/webkit/WebKit/qt/Api/
qwebpage.h
316
void scrollRequested(int dx, int dy, const QRect&
scrollViewRect
);
/external/webkit/WebCore/platform/
ScrollView.cpp
503
IntRect
scrollViewRect
= convertToContainingWindow(IntRect(0, 0, visibleWidth(), visibleHeight()));
505
updateRect.intersect(
scrollViewRect
);
520
hostWindow()->scroll(-scrollDelta,
scrollViewRect
, clipRect);
[
all
...]
/external/webkit/WebKit/win/WebCoreSupport/
WebChromeClient.cpp
460
void WebChromeClient::scroll(const IntSize& delta, const IntRect&
scrollViewRect
, const IntRect& clipRect)
464
m_webView->scrollBackingStore(core(m_webView->topLevelFrame())->view(), delta.width(), delta.height(),
scrollViewRect
, clipRect);
/external/webkit/WebKit/win/
WebView.h
809
void scrollBackingStore(WebCore::FrameView*, int dx, int dy, const WebCore::IntRect&
scrollViewRect
, const WebCore::IntRect& clipRect);
[
all
...]
WebView.cpp
791
void WebView::scrollBackingStore(FrameView* frameView, int dx, int dy, const IntRect&
scrollViewRect
, const IntRect& clipRect)
812
RECT scrollRectWin(
scrollViewRect
);
[
all
...]
Completed in 1654 milliseconds