Searched defs:reports (Results 1 - 25 of 43) sorted by relevance

12

/external/testng/src/test/java/test/reports/
H A DA.java1 package test.reports;
H A DB.java1 package test.reports;
H A DFailedSampleTest.java1 package test.reports;
H A DReporterLogTest.java1 package test.reports;
H A DFailedReporterTest.java1 package test.reports;
31 + "<class name=\"test.reports.FailedSampleTest\">\n"
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;
H A DReportTest.java1 package test.reports;
74 XmlSuite xmlSuiteA = TestHelper.createSuite(test.reports.A.class, suiteNameA, testName);
77 XmlSuite xmlSuiteB = TestHelper.createSuite(test.reports.B.class, suiteNameB, testName);
/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/google-benchmark/src/
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) {
H A Djson_reporter.cc123 void JSONReporter::ReportRuns(std::vector<Run> const& reports) { argument
124 if (reports.empty()) {
134 for (auto it = reports.begin(); it != reports.end(); ++it) {
139 if (++it_cp != reports.end()) {
H A Dconsole_reporter.cc72 void ConsoleReporter::ReportRuns(const std::vector<Run>& reports) { argument
73 for (const auto& run : reports) {
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...]
/external/libcxx/utils/google-benchmark/src/
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) {
H A Djson_reporter.cc123 void JSONReporter::ReportRuns(std::vector<Run> const& reports) { argument
124 if (reports.empty()) {
134 for (auto it = reports.begin(); it != reports.end(); ++it) {
139 if (++it_cp != reports.end()) {
H A Dconsole_reporter.cc72 void ConsoleReporter::ReportRuns(const std::vector<Run>& reports) { argument
73 for (const auto& run : reports) {
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...]
/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/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DHudFragment.java111 public void updateEncoderStatistics(final StatsReport[] reports) { argument
124 for (StatsReport report : 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/webrtc/talk/app/webrtc/test/
H A Dmockpeerconnectionobservers.h125 virtual void OnComplete(const StatsReports& reports) { argument
129 stats_.number_of_reports = reports.size();
130 for (const auto* r : reports) {
/external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
H A DPeerConnectionClientTest.java178 public void onPeerConnectionStatsReady(StatsReport[] reports) { argument
/external/kotlinc/lib/
H A Dkotlin-script-runtime.jarMETA-INF/ META-INF/MANIFEST.MF kotlin/ kotlin/script/ kotlin/script/dependencies/ kotlin/script/dependencies/BasicScriptDependenciesResolver ...

Completed in 977 milliseconds

12