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

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
H A DUtilsTest.java41 final String percentage = Utils.formatPercentage(TEST_PERCENTAGES[i], true);
53 final String percentage = Utils.formatPercentage(TEST_PERCENTAGES[i], false);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DUtils.java116 public static String formatPercentage(double percentage, boolean round) { method in class:Utils
118 return formatPercentage(localPercentage);
122 public static String formatPercentage(long amount, long total) { method in class:Utils
123 return formatPercentage(((double) amount) / total);
127 public static String formatPercentage(int percentage) { method in class:Utils
128 return formatPercentage(((double) percentage) / 100.0);
132 private static String formatPercentage(double percentage) { method in class:Utils
H A DBatteryInfo.java135 info.batteryPercentString = Utils.formatPercentage(info.batteryLevel);

Completed in 272 milliseconds