Searched refs:nextScrollSelectorIndex (Results 1 – 1 of 1) sorted by relevance
1971 int nextScrollSelectorIndex = selectorIndices[selectorIndices.length - 2] + 1; in incrementSelectorIndices() local1972 if (mWrapSelectorWheel && nextScrollSelectorIndex > mMaxValue) { in incrementSelectorIndices()1973 nextScrollSelectorIndex = mMinValue; in incrementSelectorIndices()1975 selectorIndices[selectorIndices.length - 1] = nextScrollSelectorIndex; in incrementSelectorIndices()1976 ensureCachedScrollSelectorValue(nextScrollSelectorIndex); in incrementSelectorIndices()1987 int nextScrollSelectorIndex = selectorIndices[1] - 1; in decrementSelectorIndices() local1988 if (mWrapSelectorWheel && nextScrollSelectorIndex < mMinValue) { in decrementSelectorIndices()1989 nextScrollSelectorIndex = mMaxValue; in decrementSelectorIndices()1991 selectorIndices[0] = nextScrollSelectorIndex; in decrementSelectorIndices()1992 ensureCachedScrollSelectorValue(nextScrollSelectorIndex); in decrementSelectorIndices()