Home
last modified time | relevance | path

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

/packages/apps/Calendar/src/com/android/calendar/month/
DSimpleDayPickerFragment.kt455 val currScroll: Long = (view.getFirstVisiblePosition() * child.getHeight() - in onScroll() constant
460 mIsScrollingUp = if (currScroll < mPreviousScrollPosition) { in onScroll()
462 } else if (currScroll > mPreviousScrollPosition) { in onScroll()
467 mPreviousScrollPosition = currScroll in onScroll()
/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java407 int currScroll = getScrollForPage(page); in ensureWithinScrollBounds() local
409 while (currScroll < mMinScroll) { in ensureWithinScrollBounds()
411 prevScroll = currScroll; in ensureWithinScrollBounds()
412 currScroll = getScrollForPage(page); in ensureWithinScrollBounds()
413 if (currScroll <= prevScroll) { in ensureWithinScrollBounds()
418 while (currScroll > mMaxScroll) { in ensureWithinScrollBounds()
420 prevScroll = currScroll; in ensureWithinScrollBounds()
421 currScroll = getScrollForPage(page); in ensureWithinScrollBounds()
422 if (currScroll >= prevScroll) { in ensureWithinScrollBounds()