Home
last modified time | relevance | path

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

/packages/apps/Browser/src/com/android/browser/view/
DScrollerView.java1169 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in arrowScroll() local
1170 doScrollY(scrollDelta); in arrowScroll()
1174 int scrollDelta = maxJump; in arrowScroll() local
1176 if (direction == View.FOCUS_UP && getScrollY() < scrollDelta) { in arrowScroll()
1177 scrollDelta = getScrollY(); in arrowScroll()
1183 scrollDelta = daBottom - screenBottom; in arrowScroll()
1187 if (scrollDelta == 0) { in arrowScroll()
1190 doScrollY(direction == View.FOCUS_DOWN ? scrollDelta : -scrollDelta); in arrowScroll()
1763 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect); in onSizeChanged() local
1764 doScrollY(scrollDelta); in onSizeChanged()
/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspace.java1693 int scrollDelta = getScrollX() - getScrollForPage(index) - in updateStateForCustomContent() local
1696 translationX = scrollRange - scrollDelta; in updateStateForCustomContent()
1697 progress = (scrollRange - scrollDelta) / scrollRange; in updateStateForCustomContent()