OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getSortValue
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageSummary.java
216
if (sipper.
getSortValue
() < MIN_POWER_THRESHOLD) continue;
218
((sipper.
getSortValue
() / mStatsHelper.getTotalPower()) * 100);
223
(sipper.
getSortValue
() * 100) / mStatsHelper.getMaxPower();
226
pref.setOrder(Integer.MAX_VALUE - (int) sipper.
getSortValue
()); // Invert the order
BatterySipper.java
90
double
getSortValue
() {
112
return Double.compare(other.
getSortValue
(),
getSortValue
());
BatteryStatsHelper.java
186
Math.ceil(sipper.
getSortValue
() * 100 / mTotalPower));
188
Math.ceil(sipper.
getSortValue
() * 100 / mMaxPower));
[
all
...]
Completed in 880 milliseconds