Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java281 int currScroll = getScrollForPage(page); in ensureWithinScrollBounds() local
283 while (currScroll < mMinScrollX) { in ensureWithinScrollBounds()
285 prevScroll = currScroll; in ensureWithinScrollBounds()
286 currScroll = getScrollForPage(page); in ensureWithinScrollBounds()
287 if (currScroll <= prevScroll) { in ensureWithinScrollBounds()
292 while (currScroll > mMaxScrollX) { in ensureWithinScrollBounds()
294 prevScroll = currScroll; in ensureWithinScrollBounds()
295 currScroll = getScrollForPage(page); in ensureWithinScrollBounds()
296 if (currScroll >= prevScroll) { in ensureWithinScrollBounds()
/packages/apps/Calendar/src/com/android/calendar/month/
DSimpleDayPickerFragment.java477 long currScroll = view.getFirstVisiblePosition() * child.getHeight() - child.getBottom(); in onScroll() local
481 if (currScroll < mPreviousScrollPosition) { in onScroll()
483 } else if (currScroll > mPreviousScrollPosition) { in onScroll()
489 mPreviousScrollPosition = currScroll; in onScroll()