Searched refs:nextScrollSelectorIndex (Results 1 – 1 of 1) sorted by relevance
1786 int nextScrollSelectorIndex = selectorIndices[selectorIndices.length - 2] + 1; in incrementSelectorIndices() local1787 if (mWrapSelectorWheel && nextScrollSelectorIndex > mMaxValue) { in incrementSelectorIndices()1788 nextScrollSelectorIndex = mMinValue; in incrementSelectorIndices()1790 selectorIndices[selectorIndices.length - 1] = nextScrollSelectorIndex; in incrementSelectorIndices()1791 ensureCachedScrollSelectorValue(nextScrollSelectorIndex); in incrementSelectorIndices()1802 int nextScrollSelectorIndex = selectorIndices[1] - 1; in decrementSelectorIndices() local1803 if (mWrapSelectorWheel && nextScrollSelectorIndex < mMinValue) { in decrementSelectorIndices()1804 nextScrollSelectorIndex = mMaxValue; in decrementSelectorIndices()1806 selectorIndices[0] = nextScrollSelectorIndex; in decrementSelectorIndices()1807 ensureCachedScrollSelectorValue(nextScrollSelectorIndex); in decrementSelectorIndices()