Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DListView.java2942 int indexToMakeVisible = numChildren - 1; in amountToScroll() local
2944 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2946 while (numChildren <= indexToMakeVisible) { in amountToScroll()
2951 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
2952 final View viewToMakeVisible = getChildAt(indexToMakeVisible); in amountToScroll()
2980 int indexToMakeVisible = 0; in amountToScroll() local
2982 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2984 while (indexToMakeVisible < 0) { in amountToScroll()
2988 indexToMakeVisible = nextSelectedPosition - mFirstPosition; in amountToScroll()
2990 final int positionToMakeVisible = mFirstPosition + indexToMakeVisible; in amountToScroll()
[all …]