Searched refs:reports (Results 1 - 25 of 97) sorted by relevance

1234

/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DStatsObserver.java30 /** Interface for observing Stats reports (see webrtc::StatsObservers). */
32 /** Called when the reports are ready.*/
33 public void onComplete(StatsReport[] reports); argument
/external/testng/src/test/java/test/reports/
H A DB.java1 package test.reports;
H A DFailedSampleTest.java1 package test.reports;
H A DA.java1 package test.reports;
H A DReporterLogSampleTest.java1 package test.reports;
9 import test.reports.ReporterLogSampleTest.MyTestListener;
H A DReporterSampleTest.java1 package test.reports;
H A DReporterTest.java1 package test.reports;
H A DEmailableReportDriver.java1 package test.reports;
/external/webrtc/webrtc/tools/rtcbot/rtcBotReportVisualizer/
H A Dmain.js22 var reports = [];
33 reports.push(JSON.parse(this.result));
38 analyzeReports_(reports, filesNames);
45 function analyzeReports_(reports, filesNames) {
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, filesName
[all...]
/external/annotation-tools/buildtest/
H A Dbuildtest19 rm -rf reports
21 mkdir reports
26 # Each of the following four commands places the results in the reports folder,
32 # TestWrapper examines all reports and only displays those files that contain
37 java TestWrapper reports/*
39 # The .log files aren't part of the tests, so don't put them in reports
41 mv *.log reports
/external/webrtc/webrtc/video/
H A Dcall_stats.cc28 void RemoveOldReports(int64_t now, std::list<CallStats::RttTime>* reports) { argument
31 while (!reports->empty() &&
32 (now - reports->front().time) > kRttTimeoutMs) {
33 reports->pop_front();
37 int64_t GetMaxRttMs(std::list<CallStats::RttTime>* reports) { argument
39 for (std::list<CallStats::RttTime>::const_iterator it = reports->begin();
40 it != reports->end(); ++it) {
46 int64_t GetAvgRttMs(std::list<CallStats::RttTime>* reports) { argument
47 if (reports->empty()) {
51 for (std::list<CallStats::RttTime>::const_iterator it = reports
58 UpdateAvgRttMs(std::list<CallStats::RttTime>* reports, int64_t* avg_rtt) argument
[all...]
/external/google-benchmark/src/
H A Dstatistics.cc76 const std::vector<BenchmarkReporter::Run>& reports) {
81 std::count_if(reports.begin(), reports.end(),
84 if (reports.size() - error_count < 2) {
95 real_accumulated_time_stat.reserve(reports.size());
96 cpu_accumulated_time_stat.reserve(reports.size());
97 bytes_per_second_stat.reserve(reports.size());
98 items_per_second_stat.reserve(reports.size());
102 int64_t const run_iterations = reports.front().iterations;
109 for(Run const& r : reports) {
75 ComputeStats( const std::vector<BenchmarkReporter::Run>& reports) argument
[all...]
H A Dcomplexity.h29 // list of reports. If 'reports.size() < 2' an empty vector is returned.
31 const std::vector<BenchmarkReporter::Run>& reports);
H A Dstatistics.h26 // (and any user-specified info) for the specified list of reports. If 'reports'
29 const std::vector<BenchmarkReporter::Run>& reports);
H A Dcomplexity.cc153 const std::vector<BenchmarkReporter::Run>& reports) {
157 if (reports.size() < 2) return results;
165 for (const Run& run : reports) {
175 if (reports[0].complexity == oLambda) {
176 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda);
177 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda);
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity);
183 reports[0].benchmark_name.substr(0, reports[0].benchmark_name.find('/'));
199 double multiplier = GetTimeUnitMultiplier(reports[
[all...]
H A Dcsv_reporter.cc45 void CSVReporter::ReportRuns(const std::vector<Run> & reports) { argument
50 for (const auto& run : reports) {
69 for (const auto& run : reports) {
80 for (const auto& run : reports) {
/external/libcxx/utils/google-benchmark/src/
H A Dstatistics.cc76 const std::vector<BenchmarkReporter::Run>& reports) {
81 std::count_if(reports.begin(), reports.end(),
84 if (reports.size() - error_count < 2) {
95 real_accumulated_time_stat.reserve(reports.size());
96 cpu_accumulated_time_stat.reserve(reports.size());
97 bytes_per_second_stat.reserve(reports.size());
98 items_per_second_stat.reserve(reports.size());
102 int64_t const run_iterations = reports.front().iterations;
109 for(Run const& r : reports) {
75 ComputeStats( const std::vector<BenchmarkReporter::Run>& reports) argument
[all...]
H A Dcomplexity.h29 // list of reports. If 'reports.size() < 2' an empty vector is returned.
31 const std::vector<BenchmarkReporter::Run>& reports);
H A Dstatistics.h26 // (and any user-specified info) for the specified list of reports. If 'reports'
29 const std::vector<BenchmarkReporter::Run>& reports);
H A Dcomplexity.cc153 const std::vector<BenchmarkReporter::Run>& reports) {
157 if (reports.size() < 2) return results;
165 for (const Run& run : reports) {
175 if (reports[0].complexity == oLambda) {
176 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda);
177 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda);
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity);
183 reports[0].benchmark_name.substr(0, reports[0].benchmark_name.find('/'));
199 double multiplier = GetTimeUnitMultiplier(reports[
[all...]
H A Dcsv_reporter.cc45 void CSVReporter::ReportRuns(const std::vector<Run> & reports) { argument
50 for (const auto& run : reports) {
69 for (const auto& run : reports) {
80 for (const auto& run : reports) {
/external/tensorflow/tensorflow/contrib/lite/testing/
H A Dgenerate_examples_report.py32 def make_report_table(fp, title, reports):
33 """Make an HTML report of the success/failure reports.
38 reports: a list of conversion attempts. (report_args, report_vals) i.e.
43 # sort reports by if TOCO failure and then TF failure (reversed)
44 reports.sort(key=lambda x: x[1]["toco"], reverse=False)
45 reports.sort(key=lambda x: x[1]["tf"], reverse=True)
81 for x in reports]))
93 for params, _ in reports:
107 for idx, (params, vals) in enumerate(reports):
/external/webrtc/webrtc/tools/rtcbot/bot/browser/
H A 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/google-breakpad/src/client/windows/sender/
H A Dcrash_report_sender.h34 // crash reports via HTTP(S). A crash report is formatted as a multipart POST
59 // we exceeded the maximum reports per day.
71 // Sets the maximum number of crash reports that will be sent in a 24-hour
73 // The default value of -1 means that there is no limit on reports sent.
74 void set_max_reports_per_day(int reports) { argument
75 max_reports_per_day_ = reports;
113 // Number of reports sent on last_sent_date_
/external/webrtc/talk/app/webrtc/
H A Dstatscollector_unittest.cc185 const StatsReports& reports,
187 for (const auto* r : reports) {
220 // Finds the |n|-th report of type |type| in |reports|.
223 const StatsReports& reports, const StatsReport::StatsType& type, int n) {
224 for (size_t i = 0; i < reports.size(); ++i) {
225 if (reports[i]->type() == type) {
228 return reports[i];
234 const StatsReport* FindReportById(const StatsReports& reports, argument
236 for (const auto* r : reports) {
243 std::string ExtractSsrcStatsValue(StatsReports reports, argument
184 ExtractStatsValue(const StatsReport::StatsType& type, const StatsReports& reports, StatsReport::StatsValueName name) argument
222 FindNthReportByType( const StatsReports& reports, const StatsReport::StatsType& type, int n) argument
248 ExtractBweStatsValue(StatsReports reports, StatsReport::StatsValueName name) argument
268 CheckCertChainReports(const StatsReports& reports, const std::vector<std::string>& ders, const StatsReport::Id& start_id) argument
597 SetupAndVerifyAudioTrackStats( FakeAudioTrack* audio_track, webrtc::MediaStream* stream, webrtc::StatsCollector* stats, cricket::VoiceChannel* voice_channel, const std::string& vc_name, MockVoiceMediaChannel* media_channel, cricket::VoiceSenderInfo* voice_sender_info, cricket::VoiceReceiverInfo* voice_receiver_info, cricket::VoiceMediaInfo* stats_read, StatsReports* reports) argument
680 StatsReports reports; // returned values. local
786 StatsReports reports; local
831 StatsReports reports; // returned values. local
878 StatsReports reports; // returned values. local
919 StatsReports reports; // returned values. local
932 StatsReports reports; // returned values. local
956 StatsReports reports; local
1008 StatsReports reports; local
1077 StatsReports reports; local
1114 StatsReports reports; local
1163 StatsReports reports; local
1211 StatsReports reports; local
1235 StatsReports reports; // returned values. local
1370 StatsReports reports; // returned values. local
1427 StatsReports reports; // returned values. local
1506 StatsReports reports; // returned values. local
1541 StatsReports reports; // returned values. local
1586 StatsReports reports; // returned values. local
1666 StatsReports reports; // returned values. local
1720 StatsReports reports; // returned values. local
[all...]

Completed in 674 milliseconds

1234