Home | History | Annotate | Download | only in seekbar

Lines Matching defs:mMax

201     private int mMax;
280 setMax(a.getInt(R.styleable.ProgressBar_max, mMax));
401 mMax = 100;
593 float scale = mMax > 0 ? (float) progress / (float) mMax : 0;
664 if (progress > mMax) {
665 progress = mMax;
696 if (secondaryProgress > mMax) {
697 secondaryProgress = mMax;
751 return mMax;
768 if (max != mMax) {
769 mMax = max;
1118 event.setItemCount(mMax);