HomeSort by relevance Sort by last modified time
    Searched defs:percentage (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/clang/test/PCH/
objc_property.h 5 float percentage; variable
11 @property float percentage; variable
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/
count_instructions.c 33 double percentage; local
47 percentage = (double)difference / events[0].result.value * 100;
56 printf("Delta %lld, %f%%\n", difference, percentage);
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
instruction_count_test.c 29 double percentage; local
48 percentage = (double)difference / event->result.value * 100;
54 printf("Delta %ld, %f%%\n", difference, percentage);
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
UtilsTest.java 41 final String percentage = Utils.formatPercentage(TEST_PERCENTAGES[i], true); local
42 assertThat(percentage).isEqualTo(expectedPercentages[i]);
53 final String percentage = Utils.formatPercentage(TEST_PERCENTAGES[i], false); local
54 assertThat(percentage).isEqualTo(expectedPercentages[i]);
  /external/expat/tests/
minicheck.c 152 double percentage = ((double) passed) / runner->nchecks; local
153 int display = (int) (percentage * 100);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/
StorageSettingsTest.java 93 final String percentage = NumberFormat.getPercentInstance().format(1); local
97 R.string.storage_summary, percentage, freeSpace));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/TestPhase/
RobustnessTest.java 138 float percentage = (failedRotations / totalRotations) * 100; local
143 if (percentage > MAXIMUM_PERCENT_ROTATION_FAILURE) {
145 recordRotationTestResults(percentage, failedRotations, totalRotations);
151 Log.d("rotationResult", "" + percentage);
159 * @param percentFailed Percentage of failed rotations
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
PercentageBarChart.java 44 public final float percentage; field in class:PercentageBarChart.Entry
47 protected Entry(int order, float percentage, Paint paint) {
49 this.percentage = percentage;
89 if (e.percentage == 0.0f) {
92 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
113 if (e.percentage == 0.0f) {
116 entryWidth = Math.max(mMinTickWidth, width * e.percentage);
144 * Adds a new slice to the percentage bar chart. Callers are responsible for
147 * @param percentage the total width tha
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
EmmaXmlReportParser.java 116 * Parse the percentage coverage from the XML value.
122 String percentage = null; local
125 percentage = m.group(1);
127 if (percentage != null) {
128 mSummaryMetrics.put(label, percentage);
129 CLog.d("Found: %s: %s", label, percentage);
  /external/fio/t/
genzipf.c 49 static double percentage; variable
85 printf("\t-p\tGenerate size of data set that are hit by this percentage\n");
105 percentage = atof(optarg);
267 if (percentage) {
269 percentage * nranges / 100;
285 printf("%.2f%% of hits satisfied in %.3f%cB of cache\n", percentage, cs, p);
286 percentage = 0.0;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
HTTPLiveSource.cpp 435 int32_t percentage; local
436 CHECK(msg->findInt32("percentage", &percentage));
438 notify->setInt32("percentage", percentage);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
NotificationImportExportListener.java 234 String percentage = local
236 builder.setContentText(percentage);
  /system/extras/simpleperf/
SampleDisplayer.h 35 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; local
36 return android::base::StringPrintf("%.2f%%", percentage);
48 double percentage = (total_period != 0) ? 100.0 * period / total_period : 0.0; local
49 return android::base::StringPrintf("%.2f%%", percentage);
134 double percentage = local
136 if (percentage < percent_limit_) {
139 percentage_s = android::base::StringPrintf("--%.2f%%-- ", percentage);
cmd_kmem.cpp 232 // Decide the percentage of callchain by the sample_count, so use 1 as the
292 " mode. The percentage shown in the graph is determined by\n"
693 double percentage = 0.0; local
695 percentage = 100.0 * fragment / slab_sample_tree_.total_allocated_bytes;
697 fprintf(fp, "Total fragment: %" PRIu64 ", %f%%\n", fragment, percentage);
701 percentage = 0.0;
703 percentage = 100.0 * slab_sample_tree_.nr_cross_cpu_allocations /
707 slab_sample_tree_.nr_cross_cpu_allocations, percentage);
  /external/jdiff/src/jdiff/
APIComparator.java 137 Double percentage = new Double(differs); local
138 int approxPercentage = percentage.intValue();
140 System.out.println(" Approximately " + percentage + "% difference between the APIs");
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
PowerUsageAdvancedTest.java 184 assertThat(data.percentage).isWithin(PRECISION).of(percentWifi);
187 assertThat(data.percentage).isWithin(PRECISION).of(percentApp);
190 assertThat(data.percentage).isWithin(PRECISION).of(percentBluetooth);
224 final double percentage = (TYPE_BLUETOOTH_USAGE / TOTAL_POWER) * DISCHARGE_AMOUNT; local
228 eq(Utils.formatPercentage(percentage, true)), any());
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/
EncoderUtil.java 623 int percentage = qEncoded * 100 / bytes.length; local
624 return percentage > 30 ? Encoding.B : Encoding.Q;
  /external/autotest/frontend/client/src/autotest/common/
Utils.java 295 public static String percentage(int num, int total) { method in class:Utils
304 return num + " (" + percentage(num, total) + ")";
  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 198 int percentage = nativePercentageOfResidentNativeLibraryCode(); local
212 if (percentage != -1) {
215 RecordHistogram.recordPercentageHistogram(histogram, percentage);
482 // Returns the percentage of the native library code page that are currently reseident in
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiObject.java 930 float percentage = percent \/ 100f; local
968 float percentage = percent \/ 100f; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerNotificationWarnings.java 175 final String percentage = NumberFormat.getPercentInstance().format((double) mBatteryLevel / 100.0); local
183 .setContentText(mContext.getString(textRes, percentage))
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageAdvanced.java 191 pref.setPercent(batteryData.percentage);
266 usageData.percentage = mBatteryUtils.calculateBatteryPercent(usageData.totalPowerMah,
302 final double percentage = (sipper.totalPowerMah / totalPower) * dischargeAmount; local
304 Utils.formatPercentage(percentage, true), batteryEntry.name);
379 public double percentage; field in class:PowerUsageAdvanced.PowerUsageData
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/report/
report.go 102 percentage(cumSum, rpt.total))
305 percentage(t.weight, total), t.name)
335 percentage(flat, rpt.total),
336 percentage(flatSum, rpt.total),
338 percentage(cum, rpt.total),
474 percentage(in.weight, inSum), in.src.info.prettyName())
481 percentage(flat, rpt.total),
482 percentage(flatSum, rpt.total),
484 percentage(cum, rpt.total),
492 percentage(out.weight, outSum), out.dest.info.prettyName()
557 func percentage(value, total int64) string { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/report/
report.go 102 percentage(cumSum, rpt.total))
305 percentage(t.weight, total), t.name)
335 percentage(flat, rpt.total),
336 percentage(flatSum, rpt.total),
338 percentage(cum, rpt.total),
474 percentage(in.weight, inSum), in.src.info.prettyName())
481 percentage(flat, rpt.total),
482 percentage(flatSum, rpt.total),
484 percentage(cum, rpt.total),
492 percentage(out.weight, outSum), out.dest.info.prettyName()
557 func percentage(value, total int64) string { func
    [all...]
  /external/ImageMagick/MagickCore/
effect.c 2254 percentage, local
    [all...]

Completed in 969 milliseconds

1 2 3