OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scrollGranularity
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebKit/chromium/src/
WebScrollbarImpl.cpp
108
void WebScrollbarImpl::scroll(ScrollDirection direction,
ScrollGranularity
granularity, float multiplier)
117
WebCore::ScrollableArea::scroll(dir, static_cast<WebCore::
ScrollGranularity
>(granularity), multiplier);
248
WebCore::
ScrollGranularity
scrollGranularity
;
249
if (WebViewImpl::mapKeyCodeForScroll(keyCode, &scrollDirection, &
scrollGranularity
)) {
251
return ScrollableArea::scroll(scrollDirection,
scrollGranularity
);
WebViewImpl.cpp
819
ScrollGranularity
scrollGranularity
;
829
if (!mapKeyCodeForScroll(keyCode, &scrollDirection, &
scrollGranularity
))
831
return propagateScroll(scrollDirection,
scrollGranularity
);
836
WebCore::
ScrollGranularity
*
scrollGranularity
)
841
*
scrollGranularity
= ScrollByLine;
845
*
scrollGranularity
= ScrollByLine;
849
*
scrollGranularity
= ScrollByLine;
853
*
scrollGranularity
= ScrollByLine
[
all
...]
WebViewImpl.h
320
bool propagateScroll(WebCore::ScrollDirection, WebCore::
ScrollGranularity
);
355
WebCore::
ScrollGranularity
*
scrollGranularity
);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h
149
void scrollBy(uint32_t scrollDirection, uint32_t
scrollGranularity
);
472
static void scroll(WebCore::Page*, WebCore::ScrollDirection, WebCore::
ScrollGranularity
);
473
static void logicalScroll(WebCore::Page*, WebCore::ScrollLogicalDirection, WebCore::
ScrollGranularity
);
WebPage.cpp
[
all
...]
Completed in 976 milliseconds