Home | History | Annotate | Download | only in widget

Lines Matching defs:mMaxValue

279     private int mMaxValue;
1135 && selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX] >= mMaxValue) {
1152 if (!mWrapSelectorWheel && selectorIndices[SELECTOR_MIDDLE_ITEM_INDEX] >= mMaxValue) {
1168 return (mMaxValue - mMinValue + 1) * mSelectorElementHeight;
1316 int current = mMaxValue;
1385 final boolean wrappingAllowed = (mMaxValue - mMinValue) >= mSelectorIndices.length;
1455 return mMaxValue;
1469 if (mMaxValue == maxValue) {
1475 mMaxValue = maxValue;
1476 if (mMaxValue < mValue) {
1477 mValue = mMaxValue;
1651 event.setMaxScrollY((mMaxValue - mMinValue) * mSelectorElementHeight);
1743 current = Math.min(current, mMaxValue);
1856 if (selectorIndex > mMaxValue) {
1857 return mMinValue + (selectorIndex - mMaxValue) % (mMaxValue - mMinValue) - 1;
1859 return mMaxValue - (mMinValue - selectorIndex) % (mMaxValue - mMinValue) + 1;
1873 if (mWrapSelectorWheel && nextScrollSelectorIndex > mMaxValue) {
1890 nextScrollSelectorIndex = mMaxValue;
1906 if (selectorIndex < mMinValue || selectorIndex > mMaxValue) {
2161 if (val > mMaxValue || result.length() > String.valueOf(mMaxValue).length()) {
2806 if (value <= mMaxValue) {