Home
last modified time | relevance | path

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

/packages/modules/IntentResolver/java/src/com/android/intentresolver/widget/
DNestedScrollView.java1683 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1685 scrollBy(scrollDelta, 0, ViewCompat.TYPE_NON_TOUCH, true); in arrowScroll()
1690 int scrollDelta = maxJump; in arrowScroll() local
1692 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) { in arrowScroll()
1693 scrollDelta = getScrollY(); in arrowScroll()
1700 scrollDelta = Math.min(daBottom - screenBottom, maxJump); in arrowScroll()
1703 if (scrollDelta == 0) { in arrowScroll()
1707 int finalScrollDelta = direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta; in arrowScroll()
2062 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in scrollToChild() local
2064 if (scrollDelta != 0) { in scrollToChild()
[all …]