Lines Matching refs:total
154 "1/1", "1/N", "M/N", "0/N", "Fail", "Error", "Total", "");
176 reportSummary("Total", null);
225 int total = 0;
235 total++;
246 countString(count11, total),
247 countString(count1N, total),
248 countString(countMN, total),
249 countString(count0N, total),
250 countString(countFail, total),
251 countString(countErrors, total),
252 "" + total,
257 private static String countString(int count, int total) {
258 return total > 0 ? "" + (100 * count / total) + "%" : "";