Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DScrollView.java1087 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1088 doScrollY(scrollDelta); in arrowScroll()
1092 int scrollDelta = maxJump; in arrowScroll() local
1094 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) { in arrowScroll()
1095 scrollDelta = getScrollY(); in arrowScroll()
1101 scrollDelta = daBottom - screenBottom; in arrowScroll()
1105 if (scrollDelta == 0) { in arrowScroll()
1108 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta); in arrowScroll()
1329 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToChild() local
1331 if (scrollDelta != 0) { in scrollToChild()
[all …]
DHorizontalScrollView.java1076 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1077 doScrollX(scrollDelta); in arrowScroll()
1081 int scrollDelta = maxJump; in arrowScroll() local
1083 if (direction == View.FOCUS_LEFT && getScrollX() < scrollDelta) { in arrowScroll()
1084 scrollDelta = getScrollX(); in arrowScroll()
1092 scrollDelta = daRight - screenRight; in arrowScroll()
1095 if (scrollDelta == 0) { in arrowScroll()
1098 doScrollX(direction == View.FOCUS_RIGHT ? scrollDelta : -scrollDelta); in arrowScroll()
1309 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToChild() local
1311 if (scrollDelta != 0) { in scrollToChild()
[all …]