Home | History | Annotate | Download | only in widget

Lines Matching full:selectorindices

1120         int[] selectorIndices = mSelectorIndices;
1122 && selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX] <= mMinValue) {
1127 && selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX] >= mMaxValue) {
1134 decrementSelectorIndices(selectorIndices);
1135 setValueInternal(selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX], true);
1136 if (!mWrapSelectorWheel && selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX] <= mMinValue) {
1142 incrementSelectorIndices(selectorIndices);
1143 setValueInternal(selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX], true);
1144 if (!mWrapSelectorWheel && selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX] >= mMaxValue) {
1585 int[] selectorIndices = mSelectorIndices;
1586 for (int i = 0; i < selectorIndices.length; i++) {
1587 int selectorIndex = selectorIndices[i];
1689 int[] selectorIndices = mSelectorIndices;
1696 selectorIndices[i] = selectorIndex;
1697 ensureCachedScrollSelectorValue(selectorIndices[i]);
1759 int[] selectorIndices = mSelectorIndices;
1760 int totalTextHeight = selectorIndices.length * mTextSize;
1762 float textGapCount = selectorIndices.length;
1836 * Increments the <code>selectorIndices</code> whose string representations
1839 private void incrementSelectorIndices(int[] selectorIndices) {
1840 for (int i = 0; i < selectorIndices.length - 1; i++) {
1841 selectorIndices[i] = selectorIndices[i + 1];
1843 int nextScrollSelectorIndex = selectorIndices[selectorIndices.length - 2] + 1;
1847 selectorIndices[selectorIndices.length - 1] = nextScrollSelectorIndex;
1852 * Decrements the <code>selectorIndices</code> whose string representations
1855 private void decrementSelectorIndices(int[] selectorIndices) {
1856 for (int i = selectorIndices.length - 1; i > 0; i--) {
1857 selectorIndices[i] = selectorIndices[i - 1];
1859 int nextScrollSelectorIndex = selectorIndices[1] - 1;
1863 selectorIndices[0] = nextScrollSelectorIndex;