Home | History | Annotate | Download | only in view

Lines Matching refs:scrollYDelta

1552         int scrollYDelta = 0;
1561 scrollYDelta += (rect.top - screenTop);
1564 scrollYDelta += (rect.bottom - screenBottom);
1570 scrollYDelta = Math.min(scrollYDelta, distanceToBottom);
1579 scrollYDelta -= (screenBottom - rect.bottom);
1582 scrollYDelta -= (screenTop - rect.top);
1586 scrollYDelta = Math.max(scrollYDelta, -getScrollY());
1588 return scrollYDelta;