Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/view/
DScrollCaptureViewSupport.java136 int scrollYDelta = 0; in computeScrollAmount() local
145 scrollYDelta += (requested.top - top); in computeScrollAmount()
148 scrollYDelta += (requested.bottom - bottom); in computeScrollAmount()
157 scrollYDelta -= (bottom - requested.bottom); in computeScrollAmount()
160 scrollYDelta -= (top - requested.top); in computeScrollAmount()
163 return scrollYDelta; in computeScrollAmount()
/frameworks/base/core/java/android/widget/
DScrollView.java1569 int scrollYDelta = 0; in computeScrollDeltaToGetChildRectOnScreen() local
1578 scrollYDelta += (rect.top - screenTop); in computeScrollDeltaToGetChildRectOnScreen()
1581 scrollYDelta += (rect.bottom - screenBottom); in computeScrollDeltaToGetChildRectOnScreen()
1587 scrollYDelta = Math.min(scrollYDelta, distanceToBottom); in computeScrollDeltaToGetChildRectOnScreen()
1596 scrollYDelta -= (screenBottom - rect.bottom); in computeScrollDeltaToGetChildRectOnScreen()
1599 scrollYDelta -= (screenTop - rect.top); in computeScrollDeltaToGetChildRectOnScreen()
1603 scrollYDelta = Math.max(scrollYDelta, -getScrollY()); in computeScrollDeltaToGetChildRectOnScreen()
1605 return scrollYDelta; in computeScrollDeltaToGetChildRectOnScreen()
DListView.java696 int scrollYDelta = 0; in requestChildRectangleOnScreen() local
705 scrollYDelta += (rect.top - listUnfadedTop); in requestChildRectangleOnScreen()
708 scrollYDelta += (rect.bottom - listUnfadedBottom); in requestChildRectangleOnScreen()
713 scrollYDelta = Math.min(scrollYDelta, distanceToBottom); in requestChildRectangleOnScreen()
721 scrollYDelta -= (listUnfadedBottom - rect.bottom); in requestChildRectangleOnScreen()
724 scrollYDelta -= (listUnfadedTop - rect.top); in requestChildRectangleOnScreen()
730 scrollYDelta = Math.max(scrollYDelta, deltaToTop); in requestChildRectangleOnScreen()
733 final boolean scroll = scrollYDelta != 0; in requestChildRectangleOnScreen()
735 scrollListItemsBy(-scrollYDelta); in requestChildRectangleOnScreen()