Home | History | Annotate | Download | only in widget

Lines Matching refs:mDisplayedValues

269     private String[] mDisplayedValues;
1307 if (mDisplayedValues == null) {
1323 final int valueCount = mDisplayedValues.length;
1325 final float textWidth = mSelectorWheelPaint.measureText(mDisplayedValues[i]);
1492 return mDisplayedValues;
1505 if (mDisplayedValues == displayedValues) {
1508 mDisplayedValues = displayedValues;
1509 if (mDisplayedValues != null) {
1909 if (mDisplayedValues != null) {
1911 scrollSelectorValue = mDisplayedValues[displayedValueIndex];
1949 String text = (mDisplayedValues == null) ? formatNumber(mValue)
1950 : mDisplayedValues[mValue - mMinValue];
2051 if (mDisplayedValues == null) {
2058 for (int i = 0; i < mDisplayedValues.length; i++) {
2061 if (mDisplayedValues[i].toLowerCase().startsWith(value)) {
2140 if (mDisplayedValues == null) {
2174 for (String val : mDisplayedValues) {
2795 return (mDisplayedValues == null) ? formatNumber(value)
2796 : mDisplayedValues[value - mMinValue];
2807 return (mDisplayedValues == null) ? formatNumber(value)
2808 : mDisplayedValues[value - mMinValue];