Home | History | Annotate | Download | only in settings

Lines Matching defs:formatPercentage

326     public static String formatPercentage(long amount, long total) {
327 return formatPercentage(((double) amount) / total);
331 public static String formatPercentage(int percentage) {
332 return formatPercentage(((double) percentage) / 100.0);
336 private static String formatPercentage(double percentage) {
345 return formatPercentage(getBatteryLevel(batteryChangedIntent));