Home
last modified time | relevance | path

Searched full:reports (Results 1 – 25 of 4842) sorted by relevance

12345678910>>...194

/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/webrtc/talk/app/webrtc/
Dstatscollector_unittest.cc185 const StatsReports& reports, in ExtractStatsValue() argument
187 for (const auto* r : reports) { in ExtractStatsValue()
220 // Finds the |n|-th report of type |type| in |reports|.
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
[all …]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DScanHandler.java26 Reports an attribute name without a value.
32 Reports an attribute name; a value will follow.
38 Reports an attribute value.
44 * Reports the content of a CDATA section (not a CDATA element)
49 * Reports a <!....> declaration - typically a DOCTYPE
55 Reports an entity reference or character reference.
61 Reports EOF.
67 Reports an end-tag.
73 Reports the general identifier (element type name) of a start-tag.
79 Reports character content.
[all …]
/external/catch2/examples/
D207-Rpt-TeamCityReporter.cpp27 TEST_CASE( "TeamCity reports unconditionally failing assertion", "[teamcity]" ) {
32 TEST_CASE( "TeamCity reports failing check", "[teamcity]" ) {
37 TEST_CASE( "TeamCity reports failing check-false", "[teamcity]" ) {
42 TEST_CASE( "TeamCity reports failing check-that", "[teamcity]" ) {
49 TEST_CASE( "TeamCity reports unexpected exception", "[teamcity]" ) {
54 TEST_CASE( "TeamCity reports undesired exception", "[teamcity]" ) {
59 TEST_CASE( "TeamCity reports missing expected exception", "[teamcity]" ) {
64 TEST_CASE( "TeamCity reports missing specific expected exception", "[teamcity]" ) {
69 TEST_CASE( "TeamCity reports unexpected message in expected exception", "[teamcity]" ) {
127 // [!mayfail] - doesn't fail the test if any given assertion fails (but still reports it). This can…
[all …]
/external/libcxx/utils/google-benchmark/src/
Dstatistics.cc78 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument
83 std::count_if(reports.begin(), reports.end(), in ComputeStats()
86 if (reports.size() - error_count < 2) { in ComputeStats()
95 real_accumulated_time_stat.reserve(reports.size()); in ComputeStats()
96 cpu_accumulated_time_stat.reserve(reports.size()); in ComputeStats()
100 int64_t const run_iterations = reports.front().iterations; in ComputeStats()
107 for (Run const& r : reports) { in ComputeStats()
113 it->second.s.reserve(reports.size()); in ComputeStats()
121 for (Run const& run : reports) { in ComputeStats()
122 CHECK_EQ(reports[0].benchmark_name(), run.benchmark_name()); in ComputeStats()
[all …]
Dcomplexity.cc156 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO() argument
160 if (reports.size() < 2) return results; in ComputeBigO()
168 for (const Run& run : reports) { in ComputeBigO()
178 if (reports[0].complexity == oLambda) { in ComputeBigO()
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO()
180 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda); in ComputeBigO()
182 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO()
186 std::string run_name = reports[0].benchmark_name().substr( in ComputeBigO()
187 0, reports[0].benchmark_name().find('/')); in ComputeBigO()
205 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit); in ComputeBigO()
[all …]
/external/google-benchmark/src/
Dstatistics.cc78 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeStats() argument
83 std::count_if(reports.begin(), reports.end(), in ComputeStats()
86 if (reports.size() - error_count < 2) { in ComputeStats()
95 real_accumulated_time_stat.reserve(reports.size()); in ComputeStats()
96 cpu_accumulated_time_stat.reserve(reports.size()); in ComputeStats()
100 int64_t const run_iterations = reports.front().iterations; in ComputeStats()
107 for (Run const& r : reports) { in ComputeStats()
113 it->second.s.reserve(reports.size()); in ComputeStats()
121 for (Run const& run : reports) { in ComputeStats()
122 CHECK_EQ(reports[0].benchmark_name(), run.benchmark_name()); in ComputeStats()
[all …]
Dcomplexity.cc156 const std::vector<BenchmarkReporter::Run>& reports) { in ComputeBigO() argument
160 if (reports.size() < 2) return results; in ComputeBigO()
168 for (const Run& run : reports) { in ComputeBigO()
178 if (reports[0].complexity == oLambda) { in ComputeBigO()
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda); in ComputeBigO()
180 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda); in ComputeBigO()
182 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity); in ComputeBigO()
186 std::string run_name = reports[0].benchmark_name().substr( in ComputeBigO()
187 0, reports[0].benchmark_name().find('/')); in ComputeBigO()
205 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit); in ComputeBigO()
[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/python/google-api-python-client/docs/dyn/
Ddoubleclickbidmanager_v1.queries.html82 <p class="firstline">Deletes a stored query as well as the associated stored reports.</p>
107 …rated, represented as minutes past midnight. Range is 0 to 1439. Only applies to scheduled reports.
133 …"locale": "A String", # Locale of the generated reports. Valid values are cs CZECH de GERMAN en EN…
135 # An locale string not in the list above will generate reports in English.
141 "reportCount": 42, # Number of reports that have been generated for the query.
144 "title": "A String", # Query title. It is used to name the reports generated from this query.
158 …rated, represented as minutes past midnight. Range is 0 to 1439. Only applies to scheduled reports.
184 …"locale": "A String", # Locale of the generated reports. Valid values are cs CZECH de GERMAN en EN…
186 # An locale string not in the list above will generate reports in English.
192 "reportCount": 42, # Number of reports that have been generated for the query.
[all …]
Dyoutubereporting_v1.jobs.html78 <code><a href="youtubereporting_v1.jobs.reports.html">reports()</a></code>
80 <p class="firstline">Returns the reports Resource.</p>
106 { # A job creating reports of a specific type.
110 # new reports are generated.
111 "reportTypeId": "A String", # The type of reports this job creates. Corresponds to the ID of a
128 { # A job creating reports of a specific type.
132 # new reports are generated.
133 "reportTypeId": "A String", # The type of reports this job creates. Corresponds to the ID of a
185 { # A job creating reports of a specific type.
189 # new reports are generated.
[all …]
Dadsense_v1_3.accounts.reports.saved.html75 …ounts</a> . <a href="adsense_v1_3.accounts.reports.html">reports</a> . <a href="adsense_v1_3.accou…
82 <p class="firstline">List all saved reports in the specified AdSense account.</p>
92 accountId: string, Account to which the saved reports belong. (required)
130 <pre>List all saved reports in the specified AdSense account.
133 accountId: string, Account to which the saved reports belong. (required)
134 …pageToken: string, A continuation token, used to page through saved reports. To retrieve the next …
135 …maxResults: integer, The maximum number of saved reports to include in the response, used for pagi…
141 …"nextPageToken": "A String", # Continuation token used to page through saved reports. To retrieve …
142 "items": [ # The saved reports returned in this list response.
Dadsense_v1_4.accounts.reports.saved.html75 …ounts</a> . <a href="adsense_v1_4.accounts.reports.html">reports</a> . <a href="adsense_v1_4.accou…
82 <p class="firstline">List all saved reports in the specified AdSense account.</p>
92 accountId: string, Account to which the saved reports belong. (required)
132 <pre>List all saved reports in the specified AdSense account.
135 accountId: string, Account to which the saved reports belong. (required)
136 …pageToken: string, A continuation token, used to page through saved reports. To retrieve the next …
137 …maxResults: integer, The maximum number of saved reports to include in the response, used for pagi…
143 …"nextPageToken": "A String", # Continuation token used to page through saved reports. To retrieve …
144 "items": [ # The saved reports returned in this list response.
Ddoubleclickbidmanager_v1.reports.html75 …>DoubleClick Bid Manager API</a> . <a href="doubleclickbidmanager_v1.reports.html">reports</a></h1>
79 <p class="firstline">Retrieves stored reports.</p>
83 <pre>Retrieves stored reports.
86 queryId: string, Query ID with which the reports are associated. (required)
91 { # List reports response.
93 "reports": [ # Retrieved reports.
Dadexchangeseller_v2_0.accounts.reports.saved.html75 …a href="adexchangeseller_v2_0.accounts.reports.html">reports</a> . <a href="adexchangeseller_v2_0.…
82 <p class="firstline">List all saved reports in this Ad Exchange account.</p>
130 <pre>List all saved reports in this Ad Exchange account.
133 accountId: string, Account owning the saved reports. (required)
134 …pageToken: string, A continuation token, used to page through saved reports. To retrieve the next …
135 …maxResults: integer, The maximum number of saved reports to include in the response, used for pagi…
141 …"nextPageToken": "A String", # Continuation token used to page through saved reports. To retrieve …
142 "items": [ # The saved reports returned in this list response.
DyoutubeAnalytics_v1.reports.html75 …cs_v1.html">YouTube Analytics API</a> . <a href="youtubeAnalytics_v1.reports.html">reports</a></h1>
79 <p class="firstline">Retrieve your YouTube Analytics reports.</p>
83 <pre>Retrieve your YouTube Analytics reports.
91 …cs, such as views or likes,dislikes. See the Available Reports document for a list of the reports
94 … should be applied when retrieving YouTube Analytics data. The Available Reports document identifi…
95 …der. See the Available Reports document for a list of the reports that you can retrieve and the di…
DyoutubeAnalytics_v1beta1.reports.html75 ….html">YouTube Analytics API</a> . <a href="youtubeAnalytics_v1beta1.reports.html">reports</a></h1>
79 <p class="firstline">Retrieve your YouTube Analytics reports.</p>
83 <pre>Retrieve your YouTube Analytics reports.
91 …cs, such as views or likes,dislikes. See the Available Reports document for a list of the reports
94 … should be applied when retrieving YouTube Analytics data. The Available Reports document identifi…
95 …der. See the Available Reports document for a list of the reports that you can retrieve and the di…
Dadexchangeseller_v1_1.reports.saved.html75 …r API</a> . <a href="adexchangeseller_v1_1.reports.html">reports</a> . <a href="adexchangeseller_v…
82 <p class="firstline">List all saved reports in this Ad Exchange account.</p>
129 <pre>List all saved reports in this Ad Exchange account.
132 …pageToken: string, A continuation token, used to page through saved reports. To retrieve the next …
133 …maxResults: integer, The maximum number of saved reports to include in the response, used for pagi…
139 …"nextPageToken": "A String", # Continuation token used to page through saved reports. To retrieve …
140 "items": [ # The saved reports returned in this list response.
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h50 // Interface for individual bug reports.
54 /// individual bug reports.
119 /// path. This is useful for some reports that want maximum fidelty
162 /// The reports that have the same report location, description, bug type, and
163 /// ranges are uniqued - only one of the equivalent reports will be presented
165 /// for uniquing reports. For example, memory leaks checker, could set this to
213 /// Invalid reports are those that have been classified as likely false
308 /// Profile to identify equivalent bug reports for error report coalescing.
309 /// Reports are uniqued to ensure that we do not emit multiple diagnostics
340 // BugTypes (collections of related reports).
[all …]
/external/grpc-grpc/tools/run_tests/dockerize/
Ddocker_run_tests.sh33 mkdir -p reports
41 cd reports
51 zip -r reports.zip reports
52 find . -name report.xml -print0 | xargs -0 -r zip reports.zip
53 find . -name sponge_log.xml -print0 | xargs -0 -r zip reports.zip
54 find . -name 'report_*.xml' -print0 | xargs -0 -r zip reports.zip
/external/grpc-grpc/tools/internal_ci/linux/
Dgrpc_coverage.sh31 # HTML reports can't be easily displayed in GCS, so create a zip archive
32 # and put it under reports directory to get it uploaded as an artifact.
33 zip -q -r coverage_report.zip reports || true
34 rm -rf reports || true
35 mkdir reports || true
36 mv coverage_report.zip reports || true
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dstatistics_calculator.h40 // Reports that |num_samples| samples were produced through expansion, and
44 // Reports that |num_samples| samples were produced through expansion, and
48 // Reports that |num_samples| samples were produced through preemptive
52 // Reports that |num_samples| samples were removed through accelerate.
55 // Reports that |num_samples| zeros were inserted into the output.
58 // Reports that |num_packets| packets were discarded.
61 // Reports that |num_samples| were lost.
72 // Reports that |num_samples| samples were decoded from secondary packets.
/external/syzkaller/dashboard/app/
Dreporting_test.go31 // Must get no reports for "unknown" type.
33 c.expectEQ(len(resp.Reports), 0)
37 c.expectEQ(len(resp.Reports), 1)
38 rep := resp.Reports[0]
226 for _, reports := range []int{3, 3, 2, 0, 0} {
228 c.client.pollBugs(reports)
229 // Out of quota for today, so must get 0 reports.
248 reports := c.client.pollBugs(2)
249 rep1 := reports[0]
250 rep2 := reports[1]
[all …]
/external/tensorflow/tensorflow/lite/testing/
Dgenerate_examples_report.py32 def make_report_table(fp, title, reports): argument
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/slf4j/integration/
Dbuild.xml97 <mkdir dir="target/unit-reports" />
115 <test fork="yes" todir="target/unit-reports"
123 <test fork="yes" todir="target/unit-reports"
135 <test fork="yes" todir="target/unit-reports"
144 <test fork="yes" todir="target/unit-reports"
155 <test fork="yes" todir="target/unit-reports"
165 <test fork="yes" todir="target/unit-reports"
175 <test fork="yes" todir="target/unit-reports"
185 <test fork="yes" todir="target/unit-reports"
194 <test fork="yes" todir="target/unit-reports"

12345678910>>...194