Home
last modified time | relevance | path

Searched refs:trackLen (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
DScrollbarThemeOverlay.cpp64 int trackLen = trackLength(scrollbar); in thumbPosition() local
66 return round(proportion * trackLen); in thumbPosition()
71 int trackLen = trackLength(scrollbar); in thumbLength() local
74 return trackLen; in thumbLength()
77 int length = round(proportion * trackLen); in thumbLength()
78 length = min(max(length, minimumThumbLength(scrollbar)), trackLen); in thumbLength()
DScrollbarTheme.cpp268 int trackLen = trackLength(scrollbar); in thumbLength() local
269 int length = round(proportion * trackLen); in thumbLength()
271 if (length > trackLen) in thumbLength()
DScrollbar.cpp308 int trackLen = theme()->trackLength(this); in moveThumb() local
310 delta = min(trackLen - thumbLen - thumbPos, delta); in moveThumb()
317 …float newPosition = static_cast<float>(thumbPos + delta) * (maxPos - minPos) / (trackLen - thumbLe… in moveThumb()