Home | History | Annotate | Download | only in widget

Lines Matching defs:mMax

208     private int mMax;
291 setMax(a.getInt(R.styleable.ProgressBar_max, mMax));
496 mMax = 100;
1243 float scale = mMax > 0 ? (float) progress / (float) mMax : 0;
1315 if (progress > mMax) {
1316 progress = mMax;
1347 if (secondaryProgress > mMax) {
1348 secondaryProgress = mMax;
1402 return mMax;
1419 if (max != mMax) {
1420 mMax = max;
1832 event.setItemCount(mMax);