Home | History | Annotate | Download | only in shadows

Lines Matching defs:max

13     private int max = 100;
20 final int max = attributeSet.getAttributeIntValue("android", "max", this.max);
22 if (max >= 0)
23 setMax(max);
27 public void setMax(int max) {
28 this.max = max;
29 if (progress > max) {
30 progress = max;
36 return max;
41 if (!isIndeterminate()) this.progress = Math.min(max, progress);
51 if (!isIndeterminate()) this.secondaryProgress = Math.min(max, secondaryProgress);