HomeSort by relevance Sort by last modified time
    Searched refs:thumbLength (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeOverlay.h 48 virtual int thumbLength(ScrollbarThemeClient*) OVERRIDE;
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);
ScrollbarTheme.cpp 257 float pos = std::max(0.0f, scrollbar->currentPos()) * (trackLength(scrollbar) - thumbLength(scrollbar)) / size;
263 int ScrollbarTheme::thumbLength(ScrollbarThemeClient* scrollbar)
326 thumbRect = IntRect(trackRect.x() + thumbPos, trackRect.y(), thumbLength(scrollbar), scrollbar->height());
330 thumbRect = IntRect(trackRect.x(), trackRect.y() + thumbPos, scrollbar->width(), thumbLength(scrollbar));
ScrollbarTheme.h 94 virtual int thumbLength(ScrollbarThemeClient*);
ScrollbarThemeNonMacCommon.cpp 41 return thumbLength(scrollbar) > 0;
ScrollbarThemeOverlay.cpp 82 int ScrollbarThemeOverlay::thumbLength(ScrollbarThemeClient* scrollbar)
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbarThemeGeometry.h 41 virtual int thumbLength(WebScrollbar*) = 0;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeGeometryNative.h 49 virtual int thumbLength(WebScrollbar*) OVERRIDE;
WebScrollbarThemeGeometryNative.cpp 59 int WebScrollbarThemeGeometryNative::thumbLength(WebScrollbar* scrollbar)
62 return m_theme->thumbLength(&client);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarTheme.cpp 66 return trackLength(scrollbar) - thumbLength(scrollbar) >= 0;

Completed in 154 milliseconds