Home | History | Annotate | Download | only in view

Lines Matching refs:scrollRange

907         int scrollRange = 0;
911 scrollRange = Math.max(0,
914 scrollRange = Math.max(0,
918 return scrollRange;
1333 int scrollRange = getChildAt(0).getBottom();
1335 final int overscrollBottom = Math.max(0, scrollRange - contentHeight);
1337 scrollRange -= scrollY;
1339 scrollRange += scrollY - overscrollBottom;
1342 return scrollRange;
1362 int scrollRange = getChildAt(0).getRight();
1364 final int overscrollBottom = Math.max(0, scrollRange - contentWidth);
1366 scrollRange -= scrollX;
1368 scrollRange += scrollX - overscrollBottom;
1371 return scrollRange;