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

/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DPowerGaugePreference.java51 mProgressText = Utils.formatPercentage((int) (percentOfTotal + 0.5));
H A DPowerUsageDetail.java400 text1.setText(Utils.formatPercentage(percentage));
520 value = Utils.formatPercentage(percentage);
H A DBatteryHistoryChart.java493 mMaxPercentLabelString = Utils.formatPercentage(100);
494 mMinPercentLabelString = Utils.formatPercentage(0);
508 mChargeLabelString = Utils.formatPercentage(mBatteryLevel);
/packages/apps/Settings/src/com/android/settings/applications/
H A DProcessStatsPreference.java65 mProgressText = Utils.formatPercentage((int) percentOfTime);
H A DProcessStatsDetail.java115 String appLevelText = Utils.formatPercentage(mEntry.mDuration, mTotalTime);
202 Utils.formatPercentage(mEntry.mDuration, mTotalTime));
264 String percentage = Utils.formatPercentage(service.mDuration, mTotalTime);
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java327 public static String formatPercentage(long amount, long total) { method in class:Utils
328 return formatPercentage(((double) amount) / total);
332 public static String formatPercentage(int percentage) { method in class:Utils
333 return formatPercentage(((double) percentage) / 100.0);
337 private static String formatPercentage(double percentage) { method in class:Utils
347 return formatPercentage(getBatteryLevel(batteryChangedIntent));

Completed in 152 milliseconds