| /external/webrtc/pc/ | 
| D | legacy_stats_collector_unittest.cc | 170                               const StatsReports& reports,  in ExtractStatsValue()  argument172   for (const auto* r : reports) {  in ExtractStatsValue()
 205 // Finds the `n`-th report of type `type` in `reports`.
 207 const StatsReport* FindNthReportByType(const StatsReports& reports,  in FindNthReportByType()  argument
 210   for (size_t i = 0; i < reports.size(); ++i) {  in FindNthReportByType()
 211     if (reports[i]->type() == type) {  in FindNthReportByType()
 214         return reports[i];  in FindNthReportByType()
 221 // type `type` in `reports`.
 226     const StatsReports& reports,  in GetValueInNthReportByType()  argument
 230   const StatsReport* report = FindNthReportByType(reports, type, n);  in GetValueInNthReportByType()
 [all …]
 
 | 
| /external/cronet/net/reporting/ | 
| D | README.md | 3 Reporting is a central mechanism for sending out-of-band error reports29   other parts of `//net` and other components: queueing reports,
 33       API, such as the maximum number of reports and endpoints to queue, the
 34       time interval between delivery attempts, whether or not to persist reports
 41         * The *`ReportingCache`* stores undelivered reports and endpoint
 48         * The *`ReportingDeliveryAgent`* reads reports from the cache, decides
 53               reports: accepts a URL and JSON from the `DeliveryAgent`, creates
 63           and removes reports that have remained undelivered for too long, or
 67           and removes browsing data (reports and endpoints) of selected types
 71           to check permissions for queueing/sending reports and setting/using
 [all …]
 
 | 
| D | reporting_delivery_agent.cc | 49 std::string SerializeReports(const ReportList& reports, base::TimeTicks now) {  in SerializeReports()  argument52   for (const ReportingReport* report : reports) {  in SerializeReports()
 79   // The target of a delivery. All reports uploaded together must share the
 83   // (if the endpoint is configured to include subdomains). Reports with
 90   // may have been cleared in the ReportingService if reports are not being
 112       // Note that sorting by NIK here is required for V0 reports; V1 reports  in operator <()
 132   // Add the reports in [reports_begin, reports_end) into this delivery.
 159   // Records statistics for reports after an upload has completed.
 160   // Either removes successfully delivered reports, or increments the failure
 186   const ReportList& reports() const { return reports_; }  in reports()  function in net::__anoncc6bfece0111::Delivery
 [all …]
 
 | 
| D | reporting_delivery_agent_unittest.cc | 71   // started for all subsequent reports (which may then be batched). To test72   // behavior involving batching multiple reports, we need to add, upload, and
 176   // Successful upload should remove delivered reports.  in TEST_F()
 177   std::vector<const ReportingReport*> reports;  in TEST_F()  local
 178   cache()->GetReports(&reports);  in TEST_F()
 179   EXPECT_TRUE(reports.empty());  in TEST_F()
 252   // Successful upload should remove delivered reports.  in TEST_F()
 253   std::vector<const ReportingReport*> reports;  in TEST_F()  local
 254   cache()->GetReports(&reports);  in TEST_F()
 255   EXPECT_TRUE(reports.empty());  in TEST_F()
 [all …]
 
 | 
| D | reporting_cache.h | 32 // The cache holds undelivered reports and clients (per-origin endpoint48 // The cache implementation has the notion of "pending" reports. These are
 49 // reports that are part of an active delivery attempt, so they won't be
 64   // this report, and which other reports this report can be batched with.
 80   // Gets all reports in the cache. The returned pointers are valid as long as
 81   // either no calls to |RemoveReports| have happened or the reports' |pending|
 83   // doomed reports (pending reports for which removal has been requested).
 89   // Gets all reports in the cache, including pending and doomed reports, as a
 93   // Gets all reports in the cache that aren't pending or doomed (i.e. that are
 94   // eligible for delivery), and marks returned reports as pending in
 [all …]
 
 | 
| D | reporting_delivery_agent.h | 22 // Batches reports fetched from the ReportingCache and uploads them using the25 // Reports are only considered for delivery if all of the following are true:
 29 //  - There is not already a pending upload for any reports sharing the same
 32 // Reports are batched for upload to an endpoint URL such that:
 33 //  - The available reports with the same (NIK, origin, group) are always
 35 //  - All reports uploaded together must share a NIK and origin.
 36 //  - Reports for the same (NIK, origin) can be uploaded separately if they are
 38 //  - Reports for different groups can be batched together, if they are assigned
 41 // There is no limit to the number of reports that can be uploaded together.
 42 // (Aside from the global cap on total reports.)
 [all …]
 
 | 
| D | reporting_service_unittest.cc | 119   std::vector<const ReportingReport*> reports;  in TEST_P()  local120   context()->cache()->GetReports(&reports);  in TEST_P()
 121   ASSERT_EQ(1u, reports.size());  in TEST_P()
 122   EXPECT_EQ(kUrl_, reports[0]->url);  in TEST_P()
 123   EXPECT_EQ(kNak_, reports[0]->network_anonymization_key);  in TEST_P()
 124   EXPECT_EQ(kUserAgent_, reports[0]->user_agent);  in TEST_P()
 125   EXPECT_EQ(kGroup_, reports[0]->group);  in TEST_P()
 126   EXPECT_EQ(kType_, reports[0]->type);  in TEST_P()
 136   std::vector<const ReportingReport*> reports;  in TEST_P()  local
 137   context()->cache()->GetReports(&reports);  in TEST_P()
 [all …]
 
 | 
| /external/cronet/net/network_error_logging/ | 
| D | network_error_logging_service_unittest.cc | 114   const std::vector<TestReportingService::Report>& reports() {  in reports()  function in net::__anondefd288a0111::NetworkErrorLoggingServiceTest115     return reporting_service_->reports();  in reports()
 120   // when called separately, so they can be used to ensure that reports are
 251   EXPECT_TRUE(reports().empty());  in TEST_P()
 263   EXPECT_TRUE(reports().empty());  in TEST_P()
 268   EXPECT_TRUE(reports().empty());  in TEST_P()
 273   EXPECT_TRUE(reports().empty());  in TEST_P()
 278   EXPECT_EQ(1u, reports().size());  in TEST_P()
 279   EXPECT_EQ(kUrl_, reports()[0].url);  in TEST_P()
 280   EXPECT_EQ(kNak_, reports()[0].network_anonymization_key);  in TEST_P()
 [all …]
 
 | 
| /external/tagsoup/src/org/ccil/cowan/tagsoup/ | 
| D | ScanHandler.java | 26 	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/google-benchmark/src/ | 
| D | statistics.cc | 78     const std::vector<BenchmarkReporter::Run>& reports) {  in ComputeStats()  argument83       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   const IterationCount 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 …]
 
 | 
| /external/catch2/examples/ | 
| D | 207-Rpt-TeamCityReporter.cpp | 27 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/lottie/.github/workflows/ | 
| D | validate.yml | 27       - name: Zip reports29         run: zip -r reports.zip . -i '**/reports/*.xml' '**/reports/*.html'
 30       - name: Upload reports
 35           path: reports.zip
 48       - name: Zip reports
 50         run: zip -r reports.zip . -i '**/reports/*.xml' '**/reports/*.html'
 51       - name: Upload reports
 56           path: reports.zip
 
 | 
| /external/libabigail/doc/manuals/ | 
| D | libabigail-concepts.rst | 49 or any other relevant libabigail tool to avoid emitting reports for53 ABI artifacts to avoid emitting change reports about.
 59 Syntax`_.  For instance, to specify that change reports on a type
 66 If we want to ensure that only change reports about structures named
 73 But we could also want to suppress change reports avoid typedefs named
 80 Or, we could want to suppress change reports about all struct which
 194 suppress ABI change reports for a particular kind of ABI artifact.
 291   Suppresses change reports about ABI artifacts that are defined in a
 301   Suppresses change reports about ABI artifacts that are defined in a
 312   Suppresses change reports about ABI artifacts that are defined in a
 [all …]
 
 | 
| /external/libcxx/utils/google-benchmark/src/ | 
| D | statistics.cc | 78     const std::vector<BenchmarkReporter::Run>& reports) {  in ComputeStats()  argument83       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 …]
 
 | 
| /external/rappor/bin/ | 
| D | decode_assoc.R | 3 # Command line tool to decode multidimensional reports.  It's a simple wrapper25         "--reports", default="",
 26         help="CSV file with reports; each variable is a column (required)"),
 64         "--reports-sample-size", dest="reports_sample_size", default=-1,
 70               of the computation proportional to the number of reports,
 93   if (opts$reports== "") {
 94     UsageError("--reports is required.")
 260   reports <- read.csv(opts$reports, colClasses=c("character"), as.is = TRUE)  functionVar
 262   Log("Read %d reports.  Preview:", nrow(reports))
 263   print(head(reports))
 [all …]
 
 | 
| /external/rappor/tests/ | 
| D | analyze_assoc.R | 22 #                                 -reports reports.csv \23 # Inputs: map1, map2, reports, params
 44     make_option(c("--reports", "-r"), default = "reports.csv",
 45                 help = "File with raw reports as <cohort, report1, report2>"),
 90   # Reports must be of the format
 92   reportsObj <- read.csv(opts$reports,
 101   # Parse reports from reportObj cols 2 and 3
 102   reports <- lapply(1:2, function(x) as.list(reportsObj[x + 1]))  functionVar
 105   reports <- lapply(1:2, function(i) {
 106     # apply the following function to each of reports[[1]] and reports[[2]]
 [all …]
 
 | 
| D | assoc_sim.R | 23 # Inputs: uvals, params, reports, map, num, unif26 #         reports.csv file containing reports
 42     make_option(c("--reports", "-r"), default = "reports.csv",
 43                 help = "Filename for reports"),
 47                 help = "Number of reports"),
 60 # Read unique values of reports from a csv file
 82 # Simulate correlated reports and write into reportsfile
 83 # Inputs: N = number of reports
 88 #         reportsfile = file to write reports into (with .csv suffix)
 143   # Write reports into a csv file
 [all …]
 
 | 
| D | gen_true_values_test.R | 15   reports <- GenerateTrueValues('exp', 10, num_clients, reports_per_client,  functionVar17   print(reports)
 19   # 10 clients, 2 reports per client
 20   checkEquals(20, nrow(reports))
 23   checkEquals(10, length(unique(reports$client)))
 25   # Whether a given client reports different values
 29     my_reports <- reports[reports$client == c, ]
 43   checkEquals(num_cohorts, length(unique(reports$cohort)))
 
 | 
| /external/cronet/net/cert/ | 
| D | trial_comparison_cert_verifier_unittest.cc | 311 void RecordTrialReport(std::vector<TrialReportInfo>* reports,  in RecordTrialReport()  argument327   reports->push_back(report);  in RecordTrialReport()
 371   std::vector<TrialReportInfo> reports;  in TEST_F()  local
 377       base::BindRepeating(&RecordTrialReport, &reports));  in TEST_F()
 392   std::vector<TrialReportInfo> reports;  in TEST_F()  local
 396       base::BindRepeating(&RecordTrialReport, &reports));  in TEST_F()
 415   EXPECT_TRUE(reports.empty());  in TEST_F()
 455   std::vector<TrialReportInfo> reports;  in TEST_F()  local
 458       no_crs_impl_params_, base::BindRepeating(&RecordTrialReport, &reports));  in TEST_F()
 503   ASSERT_EQ(1U, reports.size());  in TEST_F()
 [all …]
 
 | 
| /external/libcups/man/ | 
| D | cups-config.1 | 56 Reports the current API version (major.minor).59 Reports a system-specific build number.
 62 Reports the necessary compiler options.
 65 Reports the default CUPS data directory.
 68 Reports the program usage message.
 71 Reports the necessary linker options.
 74 Reports the necessary libraries to link to.
 77 Reports the default CUPS binary directory, where filters and backends are stored.
 80 Reports the default CUPS configuration file directory.
 83 When used with \fI\-\-libs\fR, reports the static libraries instead of the default (shared) librari…
 [all …]
 
 | 
| /external/openthread/third_party/nlbuild-autotools/repo/autoconf/m4/ | 
| D | nl_enable_coverage_reporting.m4 | 31 # Adds an --enable-coverage-reports configuration option to the34 # without code coverage reports, using the LCOV package.
 54     # to build and generate the coverage reports.
 59     AC_CACHE_CHECK([whether to build graphical code coverage reports],
 62             AC_ARG_ENABLE(coverage-reports,
 63 …[AS_HELP_STRING([--enable-coverage-reports],[Enable the generation of code coverage reports (requi…
 81             # If coverage is not enabled, then coverage reports
 86             # reports default to 'no'.
 98 …               AC_MSG_ERROR([--enable-coverage must be asserted to use --enable-coverage-reports.])
 112                         # enable coverage reports.
 [all …]
 
 | 
| /external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ | 
| D | admin.reportsv1.json | 5         "https://www.googleapis.com/auth/admin.reports.audit.readonly": {6           "description": "View audit reports for your G Suite domain"
 8         "https://www.googleapis.com/auth/admin.reports.usage.readonly": {
 9           "description": "View usage reports for your G Suite domain"
 17   "canonicalName": "reports",
 18 …w and manage resources like user, groups etc. It also provides audit and usage reports of domain.",
 79 …key identifies your project and provides you with API access, quota, and reports. Required unless …
 115 … information, see the guides for administrator and Google Drive activity reports. For more informa…
 116           "flatPath": "admin/reports/v1/activity/users/{userKey}/applications/{applicationName}",
 118           "id": "reports.activities.list",
 [all …]
 
 | 
| D | admin.reports_v1.json | 5         "https://www.googleapis.com/auth/admin.reports.audit.readonly": {6           "description": "View audit reports for your G Suite domain"
 8         "https://www.googleapis.com/auth/admin.reports.usage.readonly": {
 9           "description": "View usage reports for your G Suite domain"
 17   "canonicalName": "reports",
 18 …w and manage resources like user, groups etc. It also provides audit and usage reports of domain.",
 79 …key identifies your project and provides you with API access, quota, and reports. Required unless …
 115 … information, see the guides for administrator and Google Drive activity reports. For more informa…
 116           "flatPath": "admin/reports/v1/activity/users/{userKey}/applications/{applicationName}",
 118           "id": "reports.activities.list",
 [all …]
 
 | 
| /external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/ | 
| D | TestObjectIdDeserialization.java | 43             public void setReports(List<DefensiveEmployee> reports)  in setReports()  argument45                 this.reports = new ArrayList<Employee>(reports);  in setReports()
 61                       + "{\"id\":1,\"name\":\"First\",\"manager\":null,\"reports\":[2]},"  in testForwardReferenceInArray()
 63                       +"{\"id\":2,\"name\":\"Second\",\"manager\":1,\"reports\":[]}"  in testForwardReferenceInArray()
 76                       + "{\"id\":1,\"name\":\"First\",\"manager\":null,\"reports\":[2]},"  in testForwardReferenceInQueue()
 78                       +"{\"id\":2,\"name\":\"Second\",\"manager\":1,\"reports\":[]}"  in testForwardReferenceInQueue()
 91                       + "\"A\":{\"id\":1,\"name\":\"First\",\"manager\":null,\"reports\":[2]},"  in testForwardReferenceInEnumMap()
 93                       + "\"C\":{\"id\":2,\"name\":\"Second\",\"manager\":1,\"reports\":[]}"  in testForwardReferenceInEnumMap()
 105 …String json = "{\"employees\":[" + "{\"id\":1,\"name\":\"First\",\"manager\":null,\"reports\":[2]}…  in testForwardReferenceWithDefensiveCopy()
 106                 + "{\"id\":2,\"name\":\"Second\",\"manager\":1,\"reports\":[]}" + "]}";  in testForwardReferenceWithDefensiveCopy()
 [all …]
 
 | 
| /external/autotest/server/cros/bluetooth/ | 
| D | bluetooth_adapter_qr_tests.py | 241     """Collecting all the quality event reports from the btsnoop log.282     logging.debug("========== Got reports: ========== ")
 283     for handler, reports in all_reports.items():
 285         for report in reports:
 303     def test_check_connection_handle_unique(self, reports, handler_subevt):  argument
 306         @param reports: a list of quality event reports.
 313         reports_len = len(reports)
 317         handlers = [reports[i][handler_subevt] for i in range(reports_len)]
 321     def test_check_reports_completeness(self, reports, check_subevt_list):  argument
 322         """Check if all sub-events in check_subevt_list can be found in reports.
 [all …]
 
 |