OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:thumbLength
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeOverlay.cpp
69
int ScrollbarThemeOverlay::
thumbLength
(ScrollbarThemeClient* scrollbar)
ScrollbarTheme.cpp
224
thumbRect = IntRect(trackRect.x() + thumbPos, trackRect.y(),
thumbLength
(scrollbar), scrollbar->height());
228
thumbRect = IntRect(trackRect.x(), trackRect.y() + thumbPos, scrollbar->width(),
thumbLength
(scrollbar));
251
float pos = std::max(0.0f, scrollbar->currentPos()) * (trackLength(scrollbar) -
thumbLength
(scrollbar)) / size;
257
int ScrollbarTheme::
thumbLength
(ScrollbarThemeClient* scrollbar)
Scrollbar.cpp
206
int
thumbLength
= scrollbar->theme()->
thumbLength
(scrollbar);
207
return scrollbar->pressedPos() >= thumbPos && scrollbar->pressedPos() < thumbPos +
thumbLength
;
307
int thumbLen = theme()->
thumbLength
(this);
471
int thumbLen = theme()->
thumbLength
(this);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeGeometryNative.cpp
59
int WebScrollbarThemeGeometryNative::
thumbLength
(WebScrollbar* scrollbar)
62
return m_theme->
thumbLength
(&client);
Completed in 84 milliseconds