Searched refs:scrollDelta (Results 1 – 2 of 2) sorted by relevance
1235 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local1236 doScrollY(scrollDelta); in arrowScroll()1240 int scrollDelta = maxJump; in arrowScroll() local1242 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() local1486 if (scrollDelta != 0) { in scrollToDescendant()[all …]
1212 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local1213 doScrollX(scrollDelta); in arrowScroll()1217 int scrollDelta = maxJump; in arrowScroll() local1219 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() local1450 if (scrollDelta != 0) { in scrollToChild()[all …]