Home
last modified time | relevance | path

Searched refs:report (Results 1 – 25 of 1132) sorted by relevance

12345678910>>...46

/external/doclava/test/doclava/
DApiCheckTest.java43 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/
Digmpv1.out2 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 …]
Digmpv2.out2 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/
Dprofile.rb130 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/
Dstatscollector.cc90 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/toolchain-utils/deprecated/
Dreport_generator.py22 def __init__(self, report, num_tests_executed, num_passes, num_failures, argument
24 self.report = report
31 return self.report
107 report = html_tools.GetPageHeader('Test Summary')
108 report += html_tools.GetHeader('Test Summary')
109 report += html_tools.GetListHeader()
110 report += html_tools.GetListItem('Tests executed: ' + str(num_tests_executed))
111 report += html_tools.GetListItem('Passes: ' + str(num_passes))
112 report += html_tools.GetListItem('Failures: ' + str(num_failures))
113 report += html_tools.GetListItem('Regressions: ' + str(num_regressions))
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineVerifier.cpp192 void report(const char *msg, const MachineFunction *MF);
193 void report(const char *msg, const MachineBasicBlock *MBB);
194 void report(const char *msg, const MachineInstr *MI);
195 void report(const char *msg, const MachineOperand *MO, unsigned MONum);
285 report("Bad instruction parent pointer", MFI); in runOnMachineFunction()
314 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { in report() function in MachineVerifier
326 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { in report() function in MachineVerifier
328 report(msg, MBB->getParent()); in report()
338 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { in report() function in MachineVerifier
340 report(msg, MI->getParent()); in report()
[all …]
/external/llvm/lib/CodeGen/
DMachineVerifier.cpp207 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/libcxx/utils/libcxx/sym_check/
Ddiff.py63 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/emma/core/res/
Demma_default.properties16 # -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/
DLoggerFactory.java149 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/
DHTMLFormatter.java12 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/
DPageTestBase.java12 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/
DroundTrip.py32 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/
DHudFragment.java103 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/
Dmain.cpp111 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/
DComponentProcessingStep.java97 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/mockito/src/test/java/org/mockito/internal/util/reflection/
DFieldInitializerTest.java42 FieldInitializationReport report = fieldInitializer.initialize(); in should_keep_same_instance_if_field_initialized() local
44 assertSame(backupInstance, report.fieldInstance()); in should_keep_same_instance_if_field_initialized()
45 assertFalse(report.fieldWasInitialized()); in should_keep_same_instance_if_field_initialized()
46 assertFalse(report.fieldWasInitializedUsingContructorArgs()); in should_keep_same_instance_if_field_initialized()
52 FieldInitializationReport report = fieldInitializer.initialize(); in should_instantiate_field_when_type_has_no_constructor() local
54 assertNotNull(report.fieldInstance()); in should_instantiate_field_when_type_has_no_constructor()
55 assertTrue(report.fieldWasInitialized()); in should_instantiate_field_when_type_has_no_constructor()
56 assertFalse(report.fieldWasInitializedUsingContructorArgs()); in should_instantiate_field_when_type_has_no_constructor()
62 FieldInitializationReport report = fieldInitializer.initialize(); in should_instantiate_field_with_default_constructor() local
64 assertNotNull(report.fieldInstance()); in should_instantiate_field_with_default_constructor()
[all …]
/external/shflags/test_results/1.0.1/
DLinux-Ubuntu_Hardy-8.04.txt32 # 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 …]
DLinux-Ubuntu_Dapper-6.06.txt32 # 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/compiler-rt/test/tsan/
Ddebugging.cc12 void __tsan_on_report(void *report);
14 int __tsan_get_report_data(void *report, const char **description, int *count,
19 int __tsan_get_report_mop(void *report, unsigned long idx, int *tid,
22 int __tsan_get_report_thread(void *report, unsigned long idx, int *tid,
48 void __tsan_on_report(void *report) { in __tsan_on_report() argument
49 fprintf(stderr, "__tsan_on_report(%p)\n", report); in __tsan_on_report()
60 __tsan_get_report_data(report, &description, &count, &stack_count, &mop_count, in __tsan_on_report()
74 __tsan_get_report_mop(report, 0, &tid, &addr, &size, &write, &atomic, trace, in __tsan_on_report()
82 __tsan_get_report_mop(report, 1, &tid, &addr, &size, &write, &atomic, trace, in __tsan_on_report()
98 __tsan_get_report_thread(report, 0, &tid, &os_id, &running, &name, &parent_tid, trace, 16); in __tsan_on_report()
[all …]
/external/swiftshader/src/OpenGL/compiler/preprocessor/
DDirectiveParser.cpp179 mDiagnostics->report(Diagnostics::CONDITIONAL_UNTERMINATED, in lex()
214 mDiagnostics->report(Diagnostics::DIRECTIVE_INVALID_NAME, in parseDirective()
265 mDiagnostics->report(Diagnostics::EOF_IN_DIRECTIVE, in parseDirective()
277 mDiagnostics->report(Diagnostics::UNEXPECTED_TOKEN, in parseDefine()
283 mDiagnostics->report(Diagnostics::MACRO_PREDEFINED_REDEFINED, in parseDefine()
289 mDiagnostics->report(Diagnostics::MACRO_NAME_RESERVED, in parseDefine()
310 mDiagnostics->report(Diagnostics::MACRO_DUPLICATE_PARAMETER_NAMES, in parseDefine()
322 mDiagnostics->report(Diagnostics::UNEXPECTED_TOKEN, in parseDefine()
350 mDiagnostics->report(Diagnostics::MACRO_REDEFINED, in parseDefine()
365 mDiagnostics->report(Diagnostics::UNEXPECTED_TOKEN, in parseUndef()
[all …]
/external/emma/lib/
Demma_ant.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/ ...
/external/libxml2/test/schematron/
Dzvon1.sct5 <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/compiler-rt/lib/tsan/rtl/
Dtsan_debugging.cc64 int __tsan_get_report_data(void *report, const char **description, int *count, in __tsan_get_report_data() argument
69 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_data()
83 int __tsan_get_report_stack(void *report, uptr idx, void **trace, in __tsan_get_report_stack() argument
85 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_stack()
93 int __tsan_get_report_mop(void *report, uptr idx, int *tid, void **addr, in __tsan_get_report_mop() argument
96 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mop()
109 int __tsan_get_report_loc(void *report, uptr idx, const char **type, in __tsan_get_report_loc() argument
113 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_loc()
128 int __tsan_get_report_mutex(void *report, uptr idx, uptr *mutex_id, void **addr, in __tsan_get_report_mutex() argument
130 const ReportDesc *rep = (ReportDesc *)report; in __tsan_get_report_mutex()
[all …]

12345678910>>...46