Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DHorizontalScrollView.java1114 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1115 doScrollX(scrollDelta); in arrowScroll()
1119 int scrollDelta = maxJump; in arrowScroll() local
1121 if (direction == View.FOCUS_LEFT && getScrollX() < scrollDelta) { in arrowScroll()
1122 scrollDelta = getScrollX(); in arrowScroll()
1130 scrollDelta = daRight - screenRight; in arrowScroll()
1133 if (scrollDelta == 0) { in arrowScroll()
1136 doScrollX(direction == View.FOCUS_RIGHT ? scrollDelta : -scrollDelta); in arrowScroll()
1350 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToChild() local
1352 if (scrollDelta != 0) { in scrollToChild()
[all …]
DScrollView.java1129 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1130 doScrollY(scrollDelta); in arrowScroll()
1134 int scrollDelta = maxJump; in arrowScroll() local
1136 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) { in arrowScroll()
1137 scrollDelta = getScrollY(); in arrowScroll()
1143 scrollDelta = daBottom - screenBottom; in arrowScroll()
1147 if (scrollDelta == 0) { in arrowScroll()
1150 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta); in arrowScroll()
1377 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToChild() local
1379 if (scrollDelta != 0) { in scrollToChild()
[all …]
/frameworks/support/core-ui/java/android/support/v4/widget/
DNestedScrollView.java1244 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1245 doScrollY(scrollDelta); in arrowScroll()
1249 int scrollDelta = maxJump; in arrowScroll() local
1251 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) { in arrowScroll()
1252 scrollDelta = getScrollY(); in arrowScroll()
1258 scrollDelta = daBottom - screenBottom; in arrowScroll()
1262 if (scrollDelta == 0) { in arrowScroll()
1265 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta); in arrowScroll()
1511 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToChild() local
1513 if (scrollDelta != 0) { in scrollToChild()
[all …]