/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/tcpdump/tests/ |
D | igmpv1.out | 2 IP 10.0.200.163 > 224.0.0.252: igmp v1 report 224.0.0.252 3 IP 192.168.1.3 > 239.255.255.250: igmp v1 report 239.255.255.250 4 IP 10.0.200.108 > 224.0.1.24: igmp v1 report 224.0.1.24 5 IP 10.0.200.100 > 224.0.1.60: igmp v1 report 224.0.1.60 6 IP 10.0.200.144 > 224.0.0.9: igmp v1 report 224.0.0.9 7 IP 10.0.200.108 > 239.255.255.254: igmp v1 report 239.255.255.254 8 IP 10.0.200.10 > 224.0.0.251: igmp v1 report 224.0.0.251 10 IP 10.0.200.108 > 239.255.255.250: igmp v1 report 239.255.255.250 11 IP 10.0.200.108 > 239.255.255.254: igmp v1 report 239.255.255.254 12 IP 10.0.200.10 > 224.0.0.251: igmp v1 report 224.0.0.251 [all …]
|
D | igmpv2.out | 2 IP 192.168.1.64 > 239.255.255.250: igmp v2 report 239.255.255.250 3 IP 192.168.11.201 > 225.10.10.10: igmp v2 report 225.10.10.10 4 IP 192.168.11.201 > 225.1.1.3: igmp v2 report 225.1.1.3 7 IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 8 IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 9 IP 192.168.11.201 > 225.1.1.4: igmp v2 report 225.1.1.4 12 IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 13 IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 14 IP 192.168.11.201 > 225.1.1.5: igmp v2 report 225.1.1.5 16 IP 192.168.11.201 > 225.10.10.10: igmp v2 report 225.10.10.10 [all …]
|
/external/antlr/antlr-3.4/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/webrtc/talk/app/webrtc/ |
D | statscollector.cc | 90 StatsReport* report = reports->ReplaceOrAddNew(id); in AddTrackReport() local 91 report->AddString(StatsReport::kStatsValueNameTrackId, track_id); in AddTrackReport() 92 return report; in AddTrackReport() 100 StatsReport* report = AddTrackReport(reports, track_id); in CreateTrackReports() local 101 RTC_DCHECK(report != nullptr); in CreateTrackReports() 102 track_ids[track_id] = report; in CreateTrackReports() 107 StatsReport* report) { in ExtractCommonSendProperties() argument 108 report->AddString(StatsReport::kStatsValueNameCodecName, info.codec_name); in ExtractCommonSendProperties() 109 report->AddInt64(StatsReport::kStatsValueNameBytesSent, info.bytes_sent); in ExtractCommonSendProperties() 110 report->AddInt64(StatsReport::kStatsValueNameRtt, info.rtt_ms); in ExtractCommonSendProperties() [all …]
|
/external/ceres-solver/internal/ceres/ |
D | solver.cc | 283 void StringifyOrdering(const vector<int>& ordering, string* report) { in StringifyOrdering() argument 285 internal::StringAppendF(report, "AUTOMATIC"); in StringifyOrdering() 290 internal::StringAppendF(report, "%d, ", ordering[i]); in StringifyOrdering() 292 internal::StringAppendF(report, "%d", ordering.back()); in StringifyOrdering() 404 string report = in FullReport() local 409 StringAppendF(&report, "%45s %21s\n", "Original", "Reduced"); in FullReport() 410 StringAppendF(&report, "Parameter blocks % 25d% 25d\n", in FullReport() 412 StringAppendF(&report, "Parameters % 25d% 25d\n", in FullReport() 415 StringAppendF(&report, "Effective parameters% 25d% 25d\n", in FullReport() 418 StringAppendF(&report, "Residual blocks % 25d% 25d\n", in FullReport() [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); 328 report("Bad instruction parent pointer", MFI); in runOnMachineFunction() 335 report("Missing BundledPred flag, " in runOnMachineFunction() 339 report("BundledPred flag is set, " in runOnMachineFunction() 350 report("No bundle header", MBBI); in runOnMachineFunction() [all …]
|
/external/opencv3/modules/cudalegacy/test/ |
D | NCVTest.hpp | 72 virtual bool executeTest(NCVTestReport &report) = 0; 106 virtual bool executeTest(NCVTestReport &report) in executeTest() argument 109 report.statsText["rcode"] = "FAILED"; in executeTest() 111 res = initMemory(report); in executeTest() 114 dumpToFile(report); in executeTest() 122 dumpToFile(report); in executeTest() 131 dumpToFile(report); in executeTest() 140 dumpToFile(report); in executeTest() 147 report.statsText["rcode"] = "Passed"; in executeTest() 161 bool initMemory(NCVTestReport &report) in initMemory() argument [all …]
|
/external/libcxx/utils/sym_check/sym_check/ |
D | diff.py | 55 report = '' 57 report += 'Symbol added: %s\n' % maybe_demangle(sym['name']) 59 report += ' %s\n\n' % sym 61 report += '\n' 63 report += 'SYMBOL REMOVED: %s\n' % maybe_demangle(sym['name']) 65 report += ' %s\n\n' % sym 67 report += '\n' 73 report += ('SYMBOL CHANGED: %s%s%s\n\n' % 82 report += 'Summary\n' 83 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/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/jacoco/org.jacoco.report/src/org/jacoco/report/html/ |
D | HTMLFormatter.java | 12 package org.jacoco.report.html; 23 import org.jacoco.report.ILanguageNames; 24 import org.jacoco.report.IMultiReportOutput; 25 import org.jacoco.report.IReportGroupVisitor; 26 import org.jacoco.report.IReportVisitor; 27 import org.jacoco.report.ISourceFileLocator; 28 import org.jacoco.report.JavaNames; 29 import org.jacoco.report.internal.ReportOutputFolder; 30 import org.jacoco.report.internal.html.HTMLGroupVisitor; 31 import org.jacoco.report.internal.html.IHTMLReportContext; [all …]
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
D | PageTestBase.java | 12 package org.jacoco.report.internal.html.page; 17 import org.jacoco.report.ILanguageNames; 18 import org.jacoco.report.JavaNames; 19 import org.jacoco.report.MemoryMultiReportOutput; 20 import org.jacoco.report.internal.ReportOutputFolder; 21 import org.jacoco.report.internal.html.HTMLSupport; 22 import org.jacoco.report.internal.html.IHTMLReportContext; 23 import org.jacoco.report.internal.html.ILinkable; 24 import org.jacoco.report.internal.html.LinkableStub; 25 import org.jacoco.report.internal.html.index.IIndexUpdate; [all …]
|
/external/fonttools/MetaTools/ |
D | roundTrip.py | 32 def roundTrip(ttFile1, options, report): argument 56 report.write("=============================================================\n") 57 report.write(" \"%s\" differs after round tripping\n" % ttFile1) 58 report.write("-------------------------------------------------------------\n") 59 report.writelines(lines) 77 report = open("report.txt", "a+") 81 roundTrip(ttFile, options, report) 88 report.write("=============================================================\n") 89 report.write(" An exception occurred while round tripping") 90 report.write(" \"%s\"\n" % ttFile) [all …]
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | HudFragment.java | 103 private Map<String, String> getReportMap(StatsReport report) { in getReportMap() argument 105 for (StatsReport.Value value : report.values) { in getReportMap() 124 for (StatsReport report : reports) { in updateEncoderStatistics() 125 if (report.type.equals("ssrc") && report.id.contains("ssrc") in updateEncoderStatistics() 126 && report.id.contains("send")) { in updateEncoderStatistics() 128 Map<String, String> reportMap = getReportMap(report); in updateEncoderStatistics() 132 videoSendStat.append(report.id).append("\n"); in updateEncoderStatistics() 133 for (StatsReport.Value value : report.values) { in updateEncoderStatistics() 138 } else if (report.type.equals("ssrc") && report.id.contains("ssrc") in updateEncoderStatistics() 139 && report.id.contains("recv")) { in updateEncoderStatistics() [all …]
|
/external/rmi4utils/rmihidtool/ |
D | main.cpp | 111 void interactive(RMIDevice * device, unsigned char *report) in interactive() argument 148 memset(report, 0, 256); in interactive() 149 rc = device->Read(addr, report, len); in interactive() 152 print_buffer(report, len); in interactive() 161 memset(report, 0, 256); in interactive() 164 report[index++] = strtol(token, NULL, 0); in interactive() 168 if (device->Write(addr, report, len) < 0) { in interactive() 176 report, &bytes); in interactive() 177 print_buffer(report, bytes); in interactive() 206 unsigned char report[256]; in main() local [all …]
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | ComponentProcessingStep.java | 97 validationReport.report().printMessagesTo(messager); in componentElementValidator() 111 ValidationReport<TypeElement> report = 113 report.printMessagesTo(messager); 114 builderReportsByComponent.put(element.getEnclosingElement(), report); 123 ValidationReport<TypeElement> report = 125 report.printMessagesTo(messager); 126 builderReportsBySubcomponent.put(element, report); 136 ComponentValidationReport report = subcomponentValidator.validate( 138 report.report().printMessagesTo(messager); 139 reportsBySubcomponent.put(element, report.report()); [all …]
|
/external/shflags/test_results/1.0.1/ |
D | Linux-Ubuntu_Hardy-8.04.txt | 32 # Test report 56 # Test report 74 # Test report 90 # Test report 117 # Test report 141 # Test report 159 # Test report 175 # Test report 199 # Test report 223 # Test report [all …]
|
D | Linux-Ubuntu_Dapper-6.06.txt | 32 # Test report 56 # Test report 74 # Test report 90 # Test report 117 # Test report 141 # Test report 159 # Test report 175 # Test report 201 # Test report 225 # Test report [all …]
|
/external/emma/lib/ |
D | emma_ant.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/vladium/
com/ ... |
/external/libxml2/test/schematron/ |
D | zvon1.sct | 5 <report test="BBB">BBB element is present.</report> 7 <report test="@name">AAA contains attribute name.</report> 12 <report test="BBB">BBB element is present.</report> 13 <report test="@name">AAA contains attribute name.</report>
|
/external/webrtc/webrtc/tools/rtcbot/bot/browser/ |
D | bot.js | 63 var report = {}; 64 report.id = reports[index].id; 65 report.type = reports[index].type; 66 report.names = reports[index].names(); 67 report.stats = []; 68 populateStats(reports[index], report.stats); 70 outputReports.push(report); 76 function populateStats(report, stats) { argument 77 var names = report.names(); 81 stat: report.stat(names[index]),
|
/external/curl/lib/ |
D | mk-ca-bundle.pl | 188 sub report($@) { subroutine 287 report "SHA1 of old file: $oldsha1"; 289 report "Downloading '$txt' ..."; 294 report "Get certdata over HTTPS with curl!"; 300 report "Failed downloading HTTPS with curl, trying HTTP with LWP"; 309 report "Not modified"; 315 report "Unable to download latest data: " 333 report "Downloaded file identical to previous run\'s source file. Exiting"; 337 report "SHA1 of new file: $newsha1"; 369 report "Processing '$txt' ..."; [all …]
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
D | PRESUBMIT.py | 20 report = [] 21 report.extend(_CommonChecks(input_api, output_api)) 22 return report 26 report = [] 27 report.extend(_CommonChecks(input_api, output_api)) 28 return report
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/ |
D | HTMLGroupVisitor.java | 12 package org.jacoco.report.internal.html; 18 import org.jacoco.report.ISourceFileLocator; 19 import org.jacoco.report.internal.AbstractGroupVisitor; 20 import org.jacoco.report.internal.ReportOutputFolder; 21 import org.jacoco.report.internal.html.page.BundlePage; 22 import org.jacoco.report.internal.html.page.GroupPage; 23 import org.jacoco.report.internal.html.page.NodePage; 24 import org.jacoco.report.internal.html.page.ReportPage;
|