OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_scrollView
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/accessibility/
AccessibilityScrollView.cpp
40
:
m_scrollView
(view)
73
return
m_scrollView
->platformWidget();
78
return
m_scrollView
.get();
83
if (
m_scrollView
->horizontalScrollbar() && !m_horizontalScrollbar)
84
m_horizontalScrollbar = addChildScrollbar(
m_scrollView
->horizontalScrollbar());
85
else if (!
m_scrollView
->horizontalScrollbar() && m_horizontalScrollbar) {
90
if (
m_scrollView
->verticalScrollbar() && !m_verticalScrollbar)
91
m_verticalScrollbar = addChildScrollbar(
m_scrollView
->verticalScrollbar());
92
else if (!
m_scrollView
->verticalScrollbar() && m_verticalScrollbar) {
130
if (!
m_scrollView
->isFrameView()
[
all
...]
AccessibilityScrollView.h
41
ScrollView* scrollView() const { return
m_scrollView
.get(); }
67
RefPtr<ScrollView>
m_scrollView
;
/external/webkit/Source/WebCore/platform/wx/
ScrollViewWx.cpp
52
,
m_scrollView
(scrollView)
99
pos.x -= max<int>(
m_scrollView
->visibleWidth() * Scrollbar::minFractionToStepWhenPaging(),
m_scrollView
->visibleWidth() - Scrollbar::maxOverlapBetweenPages());
101
pos.y -= max<int>(
m_scrollView
->visibleHeight() * Scrollbar::minFractionToStepWhenPaging(),
m_scrollView
->visibleHeight() - Scrollbar::maxOverlapBetweenPages());
105
pos.x += max<int>(
m_scrollView
->visibleWidth() * Scrollbar::minFractionToStepWhenPaging(),
m_scrollView
->visibleWidth() - Scrollbar::maxOverlapBetweenPages());
107
pos.y += max<int>(
m_scrollView
->visibleHeight() * Scrollbar::minFractionToStepWhenPaging(),
m_scrollView
->visibleHeight() - Scrollbar::maxOverlapBetweenPages());
112
m_scrollView
->setScrollPosition(IntPoint(pos.x, pos.y))
[
all
...]
Completed in 152 milliseconds