Home
last modified time | relevance | path

Searched refs:reports (Results 1 – 25 of 547) sorted by relevance

12345678910>>...22

/external/webrtc/webrtc/tools/rtcbot/rtcBotReportVisualizer/
Dmain.js22 var reports = [];
33 reports.push(JSON.parse(this.result));
38 analyzeReports_(reports, filesNames);
45 function analyzeReports_(reports, filesNames) { argument
49 analyzeRttData(reports, filesNames, "bot1");
50 analyzeRttData(reports, filesNames, "bot2");
53 analyzePacketsLostData(reports, filesNames, "bot1");
54 analyzePacketsLostData(reports, filesNames, "bot2");
57 analyzeData(reports, filesNames, "Available Send Bandwidth-bot1", "bot1",
59 analyzeData(reports, filesNames, "Available Send Bandwidth-bot2", "bot2",
[all …]
/external/libcxx/utils/google-benchmark/src/
Dcomplexity.cc154 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument
159 std::count_if(reports.begin(), reports.end(), in ComputeStats()
162 if (reports.size() - error_count < 2) { in ComputeStats()
173 int64_t const run_iterations = reports.front().iterations; in ComputeStats()
176 for (Run const& run : reports) { in ComputeStats()
177 CHECK_EQ(reports[0].benchmark_name, run.benchmark_name); in ComputeStats()
190 mean_data.benchmark_name = reports[0].benchmark_name + "_mean"; in ComputeStats()
198 mean_data.time_unit = reports[0].time_unit; in ComputeStats()
201 mean_data.report_label = reports[0].report_label; in ComputeStats()
202 for (std::size_t i = 1; i < reports.size(); i++) { in ComputeStats()
[all …]
Djson_reporter.cc90 void JSONReporter::ReportRuns(std::vector<Run> const& reports) { in ReportRuns() argument
91 if (reports.empty()) { in ReportRuns()
101 for (auto it = reports.begin(); it != reports.end(); ++it) { in ReportRuns()
106 if (++it_cp != reports.end()) { in ReportRuns()
Dbenchmark.cc282 std::vector<BenchmarkReporter::Run> reports; // return value in RunBenchmark() local
338 reports.push_back(report); in RunBenchmark()
362 auto stat_reports = ComputeStats(reports); in RunBenchmark()
370 if (report_aggregates_only) reports.clear(); in RunBenchmark()
371 reports.insert(reports.end(), stat_reports.begin(), stat_reports.end()); in RunBenchmark()
372 return reports; in RunBenchmark()
493 std::vector<BenchmarkReporter::Run> reports = in RunBenchmarks() local
495 console_reporter->ReportRuns(reports); in RunBenchmarks()
496 if (file_reporter) file_reporter->ReportRuns(reports); in RunBenchmarks()
Dcomplexity.h33 const std::vector<BenchmarkReporter::Run>& reports);
38 const std::vector<BenchmarkReporter::Run>& reports);
Dcsv_reporter.cc51 void CSVReporter::ReportRuns(const std::vector<Run>& reports) { in ReportRuns() argument
52 for (const auto& run : reports) PrintRunData(run); in ReportRuns()
/external/google-benchmark/src/
Dcomplexity.cc154 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument
159 std::count_if(reports.begin(), reports.end(), in ComputeStats()
162 if (reports.size() - error_count < 2) { in ComputeStats()
173 int64_t const run_iterations = reports.front().iterations; in ComputeStats()
180 for(Run const& r : reports) { in ComputeStats()
192 for (Run const& run : reports) { in ComputeStats()
193 CHECK_EQ(reports[0].benchmark_name, run.benchmark_name); in ComputeStats()
212 mean_data.benchmark_name = reports[0].benchmark_name + "_mean"; in ComputeStats()
220 mean_data.time_unit = reports[0].time_unit; in ComputeStats()
228 mean_data.report_label = reports[0].report_label; in ComputeStats()
[all …]
Dcsv_reporter.cc45 void CSVReporter::ReportRuns(const std::vector<Run> & reports) { in ReportRuns() argument
50 for (const auto& run : reports) { in ReportRuns()
69 for (const auto& run : reports) { in ReportRuns()
80 for (const auto& run : reports) { in ReportRuns()
Djson_reporter.cc90 void JSONReporter::ReportRuns(std::vector<Run> const& reports) { in ReportRuns() argument
91 if (reports.empty()) { in ReportRuns()
101 for (auto it = reports.begin(); it != reports.end(); ++it) { in ReportRuns()
106 if (++it_cp != reports.end()) { in ReportRuns()
Dbenchmark.cc292 std::vector<BenchmarkReporter::Run> reports; // return value in RunBenchmark() local
359 reports.push_back(report); in RunBenchmark()
383 auto stat_reports = ComputeStats(reports); in RunBenchmark()
391 if (report_aggregates_only) reports.clear(); in RunBenchmark()
392 reports.insert(reports.end(), stat_reports.begin(), stat_reports.end()); in RunBenchmark()
393 return reports; in RunBenchmark()
515 std::vector<BenchmarkReporter::Run> reports = in RunBenchmarks() local
517 console_reporter->ReportRuns(reports); in RunBenchmarks()
518 if (file_reporter) file_reporter->ReportRuns(reports); in RunBenchmarks()
Dcomplexity.h33 const std::vector<BenchmarkReporter::Run>& reports);
38 const std::vector<BenchmarkReporter::Run>& reports);
/external/webrtc/talk/app/webrtc/
Dstatscollector_unittest.cc185 const StatsReports& reports, in ExtractStatsValue() argument
187 for (const auto* r : reports) { in ExtractStatsValue()
223 const StatsReports& reports, const StatsReport::StatsType& type, int n) { in FindNthReportByType() argument
224 for (size_t i = 0; i < reports.size(); ++i) { in FindNthReportByType()
225 if (reports[i]->type() == type) { in FindNthReportByType()
228 return reports[i]; in FindNthReportByType()
234 const StatsReport* FindReportById(const StatsReports& reports, in FindReportById() argument
236 for (const auto* r : reports) { in FindReportById()
243 std::string ExtractSsrcStatsValue(StatsReports reports, in ExtractSsrcStatsValue() argument
245 return ExtractStatsValue(StatsReport::kStatsReportTypeSsrc, reports, name); in ExtractSsrcStatsValue()
[all …]
/external/webrtc/webrtc/video/
Dcall_stats.cc28 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { in RemoveOldReports() argument
31 while (!reports->empty() && in RemoveOldReports()
32 (now - reports->front().time) > kRttTimeoutMs) { in RemoveOldReports()
33 reports->pop_front(); in RemoveOldReports()
37 int64_t GetMaxRttMs(std::list<CallStats::RttTime>* reports) { in GetMaxRttMs() argument
39 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); in GetMaxRttMs()
40 it != reports->end(); ++it) { in GetMaxRttMs()
46 int64_t GetAvgRttMs(std::list<CallStats::RttTime>* reports) { in GetAvgRttMs() argument
47 if (reports->empty()) { in GetAvgRttMs()
51 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin(); in GetAvgRttMs()
[all …]
/external/webrtc/webrtc/tools/rtcbot/bot/browser/
Dbot.js61 var reports = stateResponse.result();
62 for (index in reports) {
64 report.id = reports[index].id;
65 report.type = reports[index].type;
66 report.names = reports[index].names();
68 populateStats(reports[index], report.stats);
/external/webrtc/webrtc/tools/rtcbot/
Dtest.js111 function onStatsReady(reports) { argument
112 for (index in reports) {
114 stats[reports[index].id] = collectStats(reports[index].stats);
/external/ltp/testcases/commands/tpm-tools/tpm/tpm_selftest/
D00_Descriptions.txt2 tpm_selftest executes selftest and reports result
4 tpm_selftest -r reports result of last selftest
/external/testng/src/test/java/test/reports/
DReporterLogSampleTest.java1 package test.reports;
9 import test.reports.ReporterLogSampleTest.MyTestListener;
/external/libcxx/utils/google-benchmark/include/benchmark/
Dreporter.h162 virtual void ReportRuns(const std::vector<Run>& reports);
176 virtual void ReportRuns(const std::vector<Run>& reports);
188 virtual void ReportRuns(const std::vector<Run>& reports);
/external/google-benchmark/include/benchmark/
Dreporter.h173 virtual void ReportRuns(const std::vector<Run>& reports);
189 virtual void ReportRuns(const std::vector<Run>& reports);
202 virtual void ReportRuns(const std::vector<Run>& reports);
/external/google-breakpad/src/client/windows/sender/
Dcrash_report_sender.h74 void set_max_reports_per_day(int reports) { in set_max_reports_per_day() argument
75 max_reports_per_day_ = reports; in set_max_reports_per_day()
/external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/
Dverify.bsh15 String projectReportsPage = FileUtils.fileRead( new File( basedir, "target/site/project-reports.htm…
17 throw new RuntimeException( "project-reports.html does not contain link to JaCoCo report" );
36 …throw new RuntimeException( "project-reports.html does not contain link to JaCoCo Integration repo…
/external/autotest/client/site_tests/cellular_ServiceName/
Dcontrol10 - Shill reports an incorrect service name
19 Tests that shill reports the correct service name depending on the SIM
/external/libyuv/files/
Dpylintrc10 # Don't write out full reports, just messages.
11 reports=no
/external/webrtc/
Dpylintrc10 # Don't write out full reports, just messages.
11 reports=no
/external/toolchain-utils/cros_utils/
Dperf_diff.py197 def __init__(self, reports, num_symbols, common_only): argument
198 self._reports = reports
319 reports = []
322 reports.append(report)
323 pd = PerfDiffer(reports, int(options.num_symbols), options.common_only)

12345678910>>...22