Searched defs:formatPercentage (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DUtils.java117 public static String formatPercentage(double percentage, boolean round) { method in class:Utils
119 return formatPercentage(localPercentage);
123 public static String formatPercentage(long amount, long total) { method in class:Utils
124 return formatPercentage(((double) amount) / total);
128 public static String formatPercentage(int percentage) { method in class:Utils
129 return formatPercentage(((double) percentage) / 100.0);
133 public static String formatPercentage(double percentage) { method in class:Utils

Completed in 146 milliseconds