Searched refs:report (Results 1 - 25 of 245) sorted by relevance

12345678910

/external/chromium-trace/trace-viewer/third_party/webapp2/
H A DMakefile3 coverage report -m
/external/elfutils/src/tests/
H A Drun-dwfl-report-elf-align.sh20 testfiles testfile-dwfl-report-elf-align-shlib.so
23 # 7f3560c92000-7f3560c93000 r-xp 00000000 fd:02 25037063 testfile-dwfl-report-elf-align-shlib.so
24 # 7f3560c93000-7f3560e92000 ---p 00001000 fd:02 25037063 testfile-dwfl-report-elf-align-shlib.so
25 # 7f3560e92000-7f3560e93000 rw-p 00000000 fd:02 25037063 testfile-dwfl-report-elf-align-shlib.so
26 # testfile-dwfl-report-elf-align-shlib.so:
35 # #1 0x00007f3560c92585 in shlib () from ./testfile-dwfl-report-elf-align-shlib.so
37 # 0x7f3560c92000 is VMA address of first byte of testfile-dwfl-report-elf-align-shlib.so.
41 testrun ${abs_builddir}/dwfl-report-elf-align ./testfile-dwfl-report-elf-align-shlib.so \
/external/doclava/test/doclava/
H A DApiCheckTest.java43 Report report = apiCheck.checkApi(args);
44 assertEquals(report.errors().size(), 0);
50 Report report = apiCheck.checkApi(args);
51 assertEquals(1, report.errors().size());
52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error());
58 Report report = apiCheck.checkApi(args);
59 assertEquals(2, report.errors().size());
61 Iterator<ErrorMessage> errors = report.errors().iterator();
72 Report report = apiCheck.checkApi(args);
73 assertEquals(2, report
[all...]
/external/clang/utils/ABITest/
H A Dsummarize.sh11 if (! make test.$i.report &> /dev/null); then
H A Dbuild.sh12 $(for i in $(seq 0 $1); do echo test.$i.report; done) -k
/external/emma/core/java12/com/vladium/emma/report/
H A DIReportDataView.java9 package com.vladium.emma.report;
H A DIReportDataModel.java9 package com.vladium.emma.report;
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DIContent.java9 package com.vladium.emma.report.html.doc;
H A DIElementList.java9 package com.vladium.emma.report.html.doc;
H A DTextContent.java9 package com.vladium.emma.report.html.doc;
/external/fonttools/MetaTools/
H A DroundTrip.py7 and diffs to a file called "report.txt" in the current directory.
32 def roundTrip(ttFile1, options, report):
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
[all...]
/external/libcxx/test/libcxx/
H A Dutil.py39 report = "Command: %s\n" % cmd
40 report += "Exit Code: %d\n" % rc
42 report += "Standard Output:\n--\n%s--\n" % out
44 report += "Standard Error:\n--\n%s--\n" % err
45 report += '\n'
46 return report
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
H A Dantlr.stg40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
H A Dgnu.stg40 report(location, message, type) ::= "<location> <type>: <message>"
H A Dvs2005.stg40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
/external/clang/test/Preprocessor/
H A Dc99-6_10_3_4_p9.c7 #define report(test, ...) ((test)?puts(#test):\ macro
18 report(x>y, "x is %d but y is %d", x, y);
/external/ceres-solver/internal/ceres/
H A Dsolver.cc283 void StringifyOrdering(const vector<int>& ordering, string* report) { argument
285 internal::StringAppendF(report, "AUTOMATIC");
290 internal::StringAppendF(report, "%d, ", ordering[i]);
292 internal::StringAppendF(report, "%d", ordering.back());
404 string report = local
409 StringAppendF(&report, "%45s %21s\n", "Original", "Reduced");
410 StringAppendF(&report, "Parameter blocks % 25d% 25d\n",
412 StringAppendF(&report, "Parameters % 25d% 25d\n",
415 StringAppendF(&report, "Effective parameters% 25d% 25d\n",
418 StringAppendF(&report, "Residua
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A 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 << "|
353 def report method in class:ANTLR3.Profile.Profiler
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCAtSyncChecker.cpp50 BugReport *report = local
52 bugreporter::trackNullOrUndefValue(N, Ex, *report);
53 C.emitReport(report);
74 BugReport *report = local
76 bugreporter::trackNullOrUndefValue(N, Ex, *report);
78 C.emitReport(report);
H A DTaintTesterChecker.cpp53 BugReport *report = new BugReport(*BT, "tainted",N); local
54 report->addRange(E->getSourceRange());
55 C.emitReport(report);
/external/slf4j/slf4j-api/src/main/java/org/slf4j/
H A DLoggerFactory.java149 Util.report("Failed to load class \"org.slf4j.impl.StaticLoggerBinder\".");
150 Util.report("Defaulting to no-operation (NOP) logger implementation");
151 Util.report("See " + NO_STATICLOGGERBINDER_URL + " for further details.");
160 Util.report("slf4j-api 1.6.x (or later) is incompatible with this binding.");
161 Util.report("Your binding is version 1.5.5 or earlier.");
162 Util.report("Upgrade your binding to version 1.6.x.");
173 Util.report("Failed to instantiate SLF4J LoggerFactory", t);
183 Util.report("The following set of substitute loggers may have been accessed");
184 Util.report("during the initialization phase. Logging calls during this");
185 Util.report("phas
[all...]
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp207 void report(const char *msg, const MachineFunction *MF);
208 void report(const char *msg, const MachineBasicBlock *MBB);
209 void report(const char *msg, const MachineInstr *MI);
210 void report(const char *msg, const MachineOperand *MO, unsigned MONum);
211 void report(const char *msg, const MachineFunction *MF,
213 void report(const char *msg, const MachineBasicBlock *MBB,
215 void report(const char *msg, const MachineFunction *MF,
217 void report(const char *msg, const MachineBasicBlock *MBB,
310 report("Bad instruction parent pointer", MFI);
317 report("Missin
362 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { function in class:MachineVerifier
374 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { function in class:MachineVerifier
386 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { function in class:MachineVerifier
395 void MachineVerifier::report(const char *msg, function in class:MachineVerifier
404 void MachineVerifier::report(const char *msg, const MachineFunction *MF, function in class:MachineVerifier
410 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB, function in class:MachineVerifier
416 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB, function in class:MachineVerifier
426 void MachineVerifier::report(const char *msg, const MachineFunction *MF, function in class:MachineVerifier
[all...]
/external/clang/examples/analyzer-plugin/
H A DMainCallChecker.cpp40 BugReport *report = new BugReport(*BT, BT->getName(), N); local
41 report->addRange(Callee->getSourceRange());
42 C.emitReport(report);
/external/icu/icu4c/source/samples/legacy/
H A DMakefile44 .PHONY: all clean distclean check report
63 # Make report: creates a 'report file' with both source and sample run
64 report: $(TARGET).report
66 $(TARGET).report: check $(TARGET).cpp
/external/icu/icu4c/source/samples/uresb/
H A DMakefile44 .PHONY: all clean distclean check report
70 # Make report: creates a 'report file' with both source and sample run
71 report: $(TARGET).report
73 $(TARGET).report: check $(TARGET).cpp

Completed in 1625 milliseconds

12345678910