Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DFastScroller.java999 int targetSection = exactSection; in scrollTo() local
1000 int targetIndex = mSectionIndexer.getPositionForSection(targetSection); in scrollTo()
1001 sectionIndex = targetSection; in scrollTo()
1011 int prevSection = targetSection; in scrollTo()
1012 int nextSection = targetSection + 1; in scrollTo()
1015 if (targetSection < sectionCount - 1) { in scrollTo()
1016 nextIndex = mSectionIndexer.getPositionForSection(targetSection + 1); in scrollTo()
1022 while (targetSection > 0) { in scrollTo()
1023 targetSection--; in scrollTo()
1024 prevIndex = mSectionIndexer.getPositionForSection(targetSection); in scrollTo()
[all …]