Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/widget/
DWidgetsRecyclerView.java77 public String scrollToPositionAtProgress(float touchFraction) { in scrollToPositionAtProgress() argument
87 float pos = rowCount * touchFraction; in scrollToPositionAtProgress()
90 layoutManager.scrollToPositionWithOffset(0, (int) -(availableScrollHeight * touchFraction)); in scrollToPositionAtProgress()
92 int posInt = (int) ((touchFraction == 1)? pos -1 : pos); in scrollToPositionAtProgress()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAlphabeticalAppsList.java61 public float touchFraction; field in AlphabeticalAppsList.FastScrollSectionInfo
386 info.touchFraction = 0f; in refillAdapterItems()
391 info.touchFraction = item.rowIndex * rowFraction + subRowFraction; in refillAdapterItems()
400 info.touchFraction = 0f; in refillAdapterItems()
403 info.touchFraction = cumulativeTouchFraction; in refillAdapterItems()
DAllAppsRecyclerView.java183 public String scrollToPositionAtProgress(float touchFraction) { in scrollToPositionAtProgress() argument
198 if (info.touchFraction > touchFraction) { in scrollToPositionAtProgress()
/packages/apps/Launcher3/src/com/android/launcher3/
DBaseRecyclerView.java162 public abstract String scrollToPositionAtProgress(float touchFraction); in scrollToPositionAtProgress() argument