Home
last modified time | relevance | path

Searched refs:scrollDelta (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
DScrollView.java1235 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1236 doScrollY(scrollDelta); in arrowScroll()
1240 int scrollDelta = maxJump; in arrowScroll() local
1242 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) { in arrowScroll()
1243 scrollDelta = getScrollY(); in arrowScroll()
1249 scrollDelta = daBottom - screenBottom; in arrowScroll()
1253 if (scrollDelta == 0) { in arrowScroll()
1256 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta); in arrowScroll()
1484 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToDescendant() local
1486 if (scrollDelta != 0) { in scrollToDescendant()
[all …]
DHorizontalScrollView.java1212 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1213 doScrollX(scrollDelta); in arrowScroll()
1217 int scrollDelta = maxJump; in arrowScroll() local
1219 if (direction == View.FOCUS_LEFT && getScrollX() < scrollDelta) { in arrowScroll()
1220 scrollDelta = getScrollX(); in arrowScroll()
1228 scrollDelta = daRight - screenRight; in arrowScroll()
1231 if (scrollDelta == 0) { in arrowScroll()
1234 doScrollX(direction == View.FOCUS_RIGHT ? scrollDelta : -scrollDelta); in arrowScroll()
1448 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToChild() local
1450 if (scrollDelta != 0) { in scrollToChild()
[all …]