Home | History | Annotate | Download | only in deviceinfo

Lines Matching refs:percentage

44         public final float percentage;
47 protected Entry(int order, float percentage, Paint paint) {
49 this.percentage = percentage;
89 if (e.percentage == 0.0f) {
92 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
113 if (e.percentage == 0.0f) {
116 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
144 * Adds a new slice to the percentage bar chart. Callers are responsible for
147 * @param percentage the total width that
150 public static Entry createEntry(int order, float percentage, int color) {
154 return new Entry(order, percentage, p);