/external/doclava/test/doclava/ |
D | ApiCheckTest.java | 43 Report report = apiCheck.checkApi(args); in testEquivalentApi() local 44 assertEquals(report.errors().size(), 0); in testEquivalentApi() 50 Report report = apiCheck.checkApi(args); in testMethodReturnTypeChanged() local 51 assertEquals(1, report.errors().size()); in testMethodReturnTypeChanged() 52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error()); in testMethodReturnTypeChanged() 58 Report report = apiCheck.checkApi(args); in testMethodParameterChanged() local 59 assertEquals(2, report.errors().size()); in testMethodParameterChanged() 61 Iterator<ErrorMessage> errors = report.errors().iterator(); in testMethodParameterChanged() 72 Report report = apiCheck.checkApi(args); in testConstructorParameterChanged() local 73 assertEquals(2, report.errors().size()); in testConstructorParameterChanged() [all …]
|
/external/oboe/apps/OboeTester/app/src/main/java/com/mobileer/oboetester/ |
D | AudioQueryTools.java | 56 StringBuffer report = new StringBuffer(); in getAudioFeatureReport() local 57 report.append("\nProAudio Feature : " in getAudioFeatureReport() 59 report.append("\nLowLatency Feature : " in getAudioFeatureReport() 61 report.append("\nMIDI Feature : " in getAudioFeatureReport() 63 report.append("\nUSB Host Feature : " in getAudioFeatureReport() 65 report.append("\nUSB Accessory Feature: " in getAudioFeatureReport() 67 return report.toString(); in getAudioFeatureReport() 71 StringBuffer report = new StringBuffer(); in getAudioManagerReport() local 73 … report.append("\nSUPPORT_UNPROCESSED : " + ((unprocessedSupport == null) ? "null" : "yes")); in getAudioManagerReport() 74 return report.toString(); in getAudioManagerReport() [all …]
|
D | DeviceReportActivity.java | 101 StringBuffer report = new StringBuffer(); in reportDeviceInfo() local 102 report.append("Device Report:\n"); in reportDeviceInfo() 103 report.append("App: ").append(MainActivity.getVersionText()).append("\n"); in reportDeviceInfo() 104 report.append("Device: ").append(Build.MANUFACTURER).append(", ").append(Build.MODEL) in reportDeviceInfo() 107 report.append(reportExtraDeviceInfo()); in reportDeviceInfo() 110 report.append("\n==== Device =================== " + deviceInfo.getId() + "\n"); in reportDeviceInfo() 112 report.append(item); in reportDeviceInfo() 114 report.append(reportAllMicrophones()); in reportDeviceInfo() 115 log(report.toString()); in reportDeviceInfo() 119 StringBuffer report = new StringBuffer(); in reportAllMicrophones() local [all …]
|
/external/tcpdump/tests/ |
D | igmpv1.out | 2 2 07:22:09.537934 IP 10.0.200.163 > 224.0.0.252: igmp v1 report 224.0.0.252 3 3 07:22:09.903027 IP 192.168.1.3 > 239.255.255.250: igmp v1 report 239.255.255.250 4 4 07:22:13.069582 IP 10.0.200.108 > 224.0.1.24: igmp v1 report 224.0.1.24 5 5 07:22:14.681981 IP 10.0.200.100 > 224.0.1.60: igmp v1 report 224.0.1.60 6 6 07:22:16.045107 IP 10.0.200.144 > 224.0.0.9: igmp v1 report 224.0.0.9 7 7 07:22:16.069769 IP 10.0.200.108 > 239.255.255.254: igmp v1 report 239.255.255.254 8 8 07:22:17.446276 IP 10.0.200.10 > 224.0.0.251: igmp v1 report 224.0.0.251 10 10 07:24:14.577751 IP 10.0.200.108 > 239.255.255.250: igmp v1 report 239.255.255.250 11 11 07:24:15.077718 IP 10.0.200.108 > 239.255.255.254: igmp v1 report 239.255.255.254 12 12 07:24:15.353766 IP 10.0.200.10 > 224.0.0.251: igmp v1 report 224.0.0.251 [all …]
|
D | igmpv2.out | 2 2 10:21:48.627293 IP 192.168.1.64 > 239.255.255.250: igmp v2 report 239.255.255.250 3 3 10:21:54.761748 IP 192.168.11.201 > 225.10.10.10: igmp v2 report 225.10.10.10 4 4 10:21:56.111610 IP 192.168.11.201 > 225.1.1.3: igmp v2 report 225.1.1.3 7 7 10:22:07.461496 IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 8 8 10:22:10.221472 IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 9 9 10:22:12.496710 IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 12 12 10:22:18.921288 IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 13 13 10:22:24.791096 IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 14 14 10:22:28.461112 IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 16 16 10:23:56.649577 IP 192.168.11.201 > 225.10.10.10: igmp v2 report 225.10.10.10 [all …]
|
/external/antlr/runtime/Ruby/lib/antlr3/ |
D | profile.rb | 130 report = '+' << '-' * 78 << "+\n" 131 report << '| ' << "ANTLR Rule Profile".center( 76 ) << " |\n" 132 report << '+' << '-' * 78 << "+\n" 133 report << "| Generated at #{ Time.now }".ljust( 78 ) << " |\n" 134 report << "| Profiled #{ parser_class.name }##{ top_rule }".ljust( 78 ) << " |\n" 135 report << "| Rule source generated from grammar file #{ grammar_file }".ljust( 78 ) << " |\n" 136 report << '+' << '-' * 78 << "+\n" 138 report << '| ' << "Rule Invocations".center( 76 ) << " |\n" 139 report << '+' << '-' * 68 << '+' << '-' * 9 << "+\n" 140 report << "| %-66s | %7i |\n" % [ "Total Invocations", rule_invocations ] [all …]
|
/external/openscreen/cast/streaming/ |
D | packet_receive_stats_tracker_unittest.cc | 21 RtcpReportBlock report; in GetSentinel() local 22 report.ssrc = Ssrc{0x1337beef}; in GetSentinel() 23 report.packet_fraction_lost_numerator = -999; in GetSentinel() 24 report.cumulative_packets_lost = -0x1337cafe; in GetSentinel() 25 report.extended_high_sequence_number = 0x98765432; in GetSentinel() 26 report.jitter = in GetSentinel() 28 report.last_status_report_id = StatusReportId{2222222222}; in GetSentinel() 29 report.delay_since_last_report = RtcpReportBlock::Delay(-0x3550641); in GetSentinel() 30 return report; in GetSentinel() 68 RtcpReportBlock report = GetSentinel(); in TEST() local [all …]
|
/external/libabigail/include/ |
D | abg-reporter.h | 64 report(const type_decl_diff& d, std::ostream& out, 68 report(const enum_diff& d, std::ostream& out, 72 report(const typedef_diff& d, std::ostream& out, 76 report(const qualified_type_diff& d, std::ostream& out, 80 report(const distinct_diff& d, std::ostream& out, 84 report(const pointer_diff& d, std::ostream& out, 88 report(const reference_diff& d, std::ostream& out, 92 report(const array_diff& d, std::ostream& out, 96 report(const base_diff& d, std::ostream& out, 100 report(const class_or_union_diff& d, std::ostream& out, [all …]
|
/external/webrtc/stats/ |
D | rtc_stats_report_unittest.cc | 56 rtc::scoped_refptr<RTCStatsReport> report = in TEST() local 58 EXPECT_EQ(report->timestamp_us(), 1337u); in TEST() 59 EXPECT_EQ(report->timestamp().us_or(-1), 1337u); in TEST() 60 EXPECT_EQ(report->size(), static_cast<size_t>(0)); in TEST() 61 report->AddStats(std::unique_ptr<RTCStats>(new RTCTestStats1("a0", 1))); in TEST() 62 report->AddStats(std::unique_ptr<RTCStats>(new RTCTestStats1("a1", 2))); in TEST() 63 report->AddStats(std::unique_ptr<RTCStats>(new RTCTestStats2("b0", 4))); in TEST() 64 report->AddStats(std::unique_ptr<RTCStats>(new RTCTestStats2("b1", 8))); in TEST() 65 report->AddStats(std::unique_ptr<RTCStats>(new RTCTestStats1("a2", 16))); in TEST() 66 report->AddStats(std::unique_ptr<RTCStats>(new RTCTestStats2("b2", 32))); in TEST() [all …]
|
/external/webrtc/pc/ |
D | legacy_stats_collector.cc | 100 StatsReport* report = reports->ReplaceOrAddNew(id); in AddTrackReport() local 101 report->AddString(StatsReport::kStatsValueNameTrackId, track_id); in AddTrackReport() 102 return report; in AddTrackReport() 110 StatsReport* report = AddTrackReport(reports, track_id); in CreateTrackReport() local 111 RTC_DCHECK(report != nullptr); in CreateTrackReport() 112 (*track_ids)[track_id] = report; in CreateTrackReport() 125 StatsReport* report, in ExtractCommonSendProperties() argument 127 report->AddString(StatsReport::kStatsValueNameCodecName, info.codec_name); in ExtractCommonSendProperties() 132 report->AddInt64(StatsReport::kStatsValueNameBytesSent, bytes_sent); in ExtractCommonSendProperties() 134 report->AddInt64(StatsReport::kStatsValueNameRtt, info.rtt_ms); in ExtractCommonSendProperties() [all …]
|
D | rtc_stats_collector_unittest.cc | 168 std::string IdForType(const RTCStatsReport* report) { in IdForType() argument 169 auto stats_of_my_type = report->RTCStatsReport::GetStatsOfType<T>(); in IdForType() 642 EXPECT_TRUE_WAIT(callback->report() != nullptr, kGetStatsReportTimeoutMs); in WaitForReport() 644 for (const RTCStats& stats : *callback->report()) { in WaitForReport() 652 return callback->report(); in WaitForReport() 666 const rtc::scoped_refptr<const RTCStatsReport>& report, in ExpectReportContainsCertificateInfo() argument 670 "CF" + certinfo.fingerprints[i], report->timestamp_us()); in ExpectReportContainsCertificateInfo() 678 ASSERT_TRUE(report->Get(expected_certificate_stats.id())); in ExpectReportContainsCertificateInfo() 680 report->Get(expected_certificate_stats.id()) in ExpectReportContainsCertificateInfo() 686 const rtc::scoped_refptr<const RTCStatsReport>& report, in GetCertificateStatsFromFingerprint() argument [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 244 void report(const char *msg, const MachineFunction *MF); 245 void report(const char *msg, const MachineBasicBlock *MBB); 246 void report(const char *msg, const MachineInstr *MI); 247 void report(const char *msg, const MachineOperand *MO, unsigned MONum, 358 report("Function has NoVRegs property but there are VReg operands", &MF); in verifyProperties() 415 report("Bad instruction parent pointer", &*MFI); in verify() 422 report("Missing BundledPred flag, " in verify() 426 report("BundledPred flag is set, " in verify() 437 report("No bundle header", &*MBBI); in verify() 445 report("Instruction has operand with wrong parent set", &MI); in verify() [all …]
|
/external/tensorflow/tensorflow/python/grappler/ |
D | cost_analyzer_test.py | 48 report = cost_analyzer.GenerateCostReport(mg, per_node_report=True) 51 self.assertTrue(b"Total time measured in ns (serialized):" in report) 52 self.assertTrue(b"Total time measured in ns (actual):" in report) 53 self.assertTrue(b"Total time analytical in ns (upper bound):" in report) 54 self.assertTrue(b"Total time analytical in ns (lower bound):" in report) 55 self.assertTrue(b"Overall efficiency (analytical upper/actual):" in report) 56 self.assertTrue(b"Overall efficiency (analytical lower/actual):" in report) 57 self.assertTrue(b"Below is the per-node report summary:" in report) 60 print("{}".format(report)) 73 report = cost_analyzer.GenerateCostReport( [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineVerifier.cpp | 207 template <typename T> void report(const char *msg, ilist_iterator<T> I) { in report() function 208 report(msg, &*I); in report() 210 void report(const char *msg, const MachineFunction *MF); 211 void report(const char *msg, const MachineBasicBlock *MBB); 212 void report(const char *msg, const MachineInstr *MI); 213 void report(const char *msg, const MachineOperand *MO, unsigned MONum); 318 report( in verifyProperties() 362 report("Bad instruction parent pointer", MFI); in verify() 369 report("Missing BundledPred flag, " in verify() 373 report("BundledPred flag is set, " in verify() [all …]
|
/external/libabigail/tests/data/ |
D | Makefile.am | 61 test-abidiff/empty-report.txt \ 64 test-abidiff/test-enum0-report.txt \ 67 test-abidiff/test-enum1-report.txt \ 70 test-abidiff/test-qual-type0-report.txt \ 73 test-abidiff/test-struct0-report.txt \ 76 test-abidiff/test-struct1-report.txt \ 79 test-abidiff/test-var0-report.txt \ 93 test-abidiff/test-crc-report-0-1.txt \ 94 test-abidiff/test-crc-report-1-0.txt \ 95 test-abidiff/test-crc-report-1-2.txt \ [all …]
|
/external/libcxx/utils/libcxx/sym_check/ |
D | diff.py | 63 report = '' 65 report += 'Symbol added: %s\n' % maybe_demangle(sym['name']) 67 report += ' %s\n\n' % sym 69 report += '\n' 71 report += 'SYMBOL REMOVED: %s\n' % maybe_demangle(sym['name']) 73 report += ' %s\n\n' % sym 75 report += '\n' 81 report += ('SYMBOL CHANGED: %s%s%s\n\n' % 90 report += 'Summary\n' 91 report += ' Added: %d\n' % len(added_syms) [all …]
|
/external/cronet/buildtools/third_party/libc++/trunk/utils/libcxx/sym_check/ |
D | diff.py | 62 report = '' 64 report += 'Symbol added: %s\n' % maybe_demangle(sym['name']) 66 report += ' %s\n\n' % sym 68 report += '\n' 70 report += 'SYMBOL REMOVED: %s\n' % maybe_demangle(sym['name']) 72 report += ' %s\n\n' % sym 74 report += '\n' 80 report += ('SYMBOL CHANGED: %s%s%s\n\n' % 89 report += 'Summary\n' 90 report += ' Added: %d\n' % len(added_syms) [all …]
|
/external/emma/core/res/ |
D | emma_default.properties | 16 # -Demma.report.txt.out.file=coverage.txt 63 # common report defaults: 65 report.units: instr 66 report.depth: method 67 report.columns: name,class,method,block,line 68 report.sort: +block,+name,+method,+class 69 report.metrics: method:70,block:80,line:80,class:100 72 # txt report properties: 74 report.txt.depth: all 75 report.txt.columns: class,method,block,line,name [all …]
|
/external/curl/scripts/ |
D | mk-ca-bundle.pl | 208 sub report($@) { subroutine 310 report "SHA256 of old file: $oldhash"; 313 report "Downloading $txt ..."; 319 report "Get certdata with curl!"; 325 report "Downloaded $txt"; 328 report "Failed downloading via HTTPS with curl"; 330 report "Failed to remove '$txt': $!"; 335 report "curl lacks https support"; 339 report "curl not found"; 346 report "Falling back to HTTP"; [all …]
|
/external/slf4j/slf4j-api/src/main/java/org/slf4j/ |
D | LoggerFactory.java | 149 Util.report("Failed to load class \"org.slf4j.impl.StaticLoggerBinder\"."); in bind() 150 Util.report("Defaulting to no-operation (NOP) logger implementation"); in bind() 151 Util.report("See " + NO_STATICLOGGERBINDER_URL + " for further details."); in bind() 160 Util.report("slf4j-api 1.6.x (or later) is incompatible with this binding."); in bind() 161 Util.report("Your binding is version 1.5.5 or earlier."); in bind() 162 Util.report("Upgrade your binding to version 1.6.x."); in bind() 173 Util.report("Failed to instantiate SLF4J LoggerFactory", t); in failedBinding() 183 Util.report("The following set of substitute loggers may have been accessed"); in fixSubstitutedLoggers() 184 Util.report("during the initialization phase. Logging calls during this"); in fixSubstitutedLoggers() 185 Util.report("phase were not honored. However, subsequent logging calls to these"); in fixSubstitutedLoggers() [all …]
|
/external/google-benchmark/src/ |
D | benchmark_runner.cc | 71 BenchmarkReporter::Run report; in CreateRunReport() local 73 report.run_name = b.name; in CreateRunReport() 74 report.error_occurred = results.has_error_; in CreateRunReport() 75 report.error_message = results.error_message_; in CreateRunReport() 76 report.report_label = results.report_label_; in CreateRunReport() 78 report.iterations = results.iterations; in CreateRunReport() 79 report.time_unit = b.time_unit; in CreateRunReport() 80 report.threads = b.threads; in CreateRunReport() 81 report.repetition_index = repetition_index; in CreateRunReport() 82 report.repetitions = b.repetitions; in CreateRunReport() [all …]
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/html/ |
D | HTMLFormatter.java | 13 package org.jacoco.report.html; 24 import org.jacoco.report.ILanguageNames; 25 import org.jacoco.report.IMultiReportOutput; 26 import org.jacoco.report.IReportGroupVisitor; 27 import org.jacoco.report.IReportVisitor; 28 import org.jacoco.report.ISourceFileLocator; 29 import org.jacoco.report.JavaNames; 30 import org.jacoco.report.internal.ReportOutputFolder; 31 import org.jacoco.report.internal.html.HTMLGroupVisitor; 32 import org.jacoco.report.internal.html.IHTMLReportContext; [all …]
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
D | PageTestBase.java | 13 package org.jacoco.report.internal.html.page; 18 import org.jacoco.report.ILanguageNames; 19 import org.jacoco.report.JavaNames; 20 import org.jacoco.report.MemoryMultiReportOutput; 21 import org.jacoco.report.internal.ReportOutputFolder; 22 import org.jacoco.report.internal.html.HTMLSupport; 23 import org.jacoco.report.internal.html.IHTMLReportContext; 24 import org.jacoco.report.internal.html.ILinkable; 25 import org.jacoco.report.internal.html.LinkableStub; 26 import org.jacoco.report.internal.html.index.IIndexUpdate; [all …]
|
/external/dagger2/java/dagger/internal/codegen/validation/ |
D | MembersInjectionValidator.java | 48 ValidationReport.Builder report = ValidationReport.about(requestElement); in validateMembersInjectionRequest() local 49 checkQualifiers(report, requestElement); in validateMembersInjectionRequest() 50 checkMembersInjectedType(report, membersInjectedType); in validateMembersInjectionRequest() 51 return report.build(); in validateMembersInjectionRequest() 64 ValidationReport.Builder report = ValidationReport.about(method); in validateMembersInjectionMethod() local 65 checkQualifiers(report, method); in validateMembersInjectionMethod() 66 checkQualifiers(report, method.getParameters().get(0)); in validateMembersInjectionMethod() 67 checkMembersInjectedType(report, membersInjectedType); in validateMembersInjectionMethod() 68 return report.build(); in validateMembersInjectionMethod() 71 private void checkQualifiers(ValidationReport.Builder report, XElement element) { in checkQualifiers() argument [all …]
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/ |
D | XMLFormatter.java | 13 package org.jacoco.report.xml; 23 import org.jacoco.report.IReportGroupVisitor; 24 import org.jacoco.report.IReportVisitor; 25 import org.jacoco.report.ISourceFileLocator; 26 import org.jacoco.report.internal.xml.ReportElement; 27 import org.jacoco.report.internal.xml.XMLCoverageWriter; 28 import org.jacoco.report.internal.xml.XMLGroupVisitor; 60 private ReportElement report; in createVisitor() field in XMLFormatter.RootVisitor 75 XMLCoverageWriter.writeBundle(bundle, report); in createVisitor() 81 groupVisitor = new XMLGroupVisitor(report, name); in createVisitor() [all …]
|