HomeSort by relevance Sort by last modified time
    Searched refs:percentOfTotal (Results 1 - 3 of 3) sorted by null

  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerGaugePreference.java 44 public void setPercent(double percentOfMax, double percentOfTotal) {
47 R.string.percentage, (int) Math.ceil(percentOfTotal));
PowerUsageSummary.java 381 final double percentOfTotal = ((sipper.getSortValue() / mTotalPower) * 100);
382 if (percentOfTotal < 1) continue;
385 sipper.percent = percentOfTotal;
388 pref.setPercent(percentOfMax, percentOfTotal);
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.cpp 300 double percentOfTotal = (static_cast<double>(count) * 100) / m_sampleCount;
303 fprintf(stdout, "%s:%s%-6lld %.3f%%\t%.3f%%\t | %-6lld %.3f%%\n", opcodeName, opcodePadding, count, percentOfVM, percentOfTotal, countInCTIFunctions, percentInCTIFunctions);

Completed in 41 milliseconds