Home | History | Annotate | Download | only in widget

Lines Matching defs:mMax

208     private int mMax;
293 setMax(a.getInt(R.styleable.ProgressBar_max, mMax));
498 mMax = 100;
1220 return mMax > 0 ? progress / (float) mMax : 0;
1341 if (progress > mMax) {
1342 progress = mMax;
1373 if (secondaryProgress > mMax) {
1374 secondaryProgress = mMax;
1428 return mMax;
1445 if (max != mMax) {
1446 mMax = max;
1858 event.setItemCount(mMax);