OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetMinPosition
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/views/controls/scrollbar/
scroll_bar.cc
30
int ScrollBar::
GetMinPosition
() const {
scroll_bar.h
31
// position which is in the
GetMinPosition
() / GetMaxPosition range.
79
int
GetMinPosition
() const;
scrollbar_unittest.cc
112
EXPECT_EQ(scrollbar_->
GetMinPosition
(), 0);
151
EXPECT_EQ(0, scrollbar_->
GetMinPosition
());
base_scroll_bar.cc
59
offset =
GetMinPosition
();
66
offset = std::max(
GetMinPosition
(), offset);
74
offset = std::max(
GetMinPosition
(), offset);
94
if (contents_scroll_offset_ <
GetMinPosition
()) {
95
contents_scroll_offset_ =
GetMinPosition
();
106
if (contents_scroll_offset_ <
GetMinPosition
()) {
107
contents_scroll_offset_ =
GetMinPosition
();
Completed in 59 milliseconds