Searched refs:report (Results 51 - 75 of 245) sorted by relevance

12345678910

/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
H A DStaticLoggerBinder.java77 Util.report("This version of SLF4J requires log4j version 1.2.12 or later. See also http://www.slf4j.org/codes.html#log4j_version");
/external/v8/tools/push-to-trunk/
H A Dscript_test.py50 print cov.report()
/external/clang/tools/scan-view/
H A DScanView.py21 kReportFileRE = re.compile('(.*/)?report-(.*)\\.html')
52 # Insert report bug and open file links.
53 kReportReplacements.append((re.compile('<!-- REPORTBUG id="report-(.*)\\.html" -->'),
54 ('<td class="Button"><a href="report/\\1">Report Bug</a></td>' +
58 '<h3><a href="/">Summary</a> > Report %(report)s</h3>'))
61 '<td class="Button"><a href="report/%(report)s">Report Bug</a></td>'))
63 # Insert report crashes link.
66 # be enabled. Also the radar reporter needs to be fixed to report
86 def __init__(self, report, reporte
[all...]
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp69 return report("Error opening file: " + infoFile, Diag);
78 return report("Invalid file data: '" + lines[idx+1] + "' not a number",
86 return report("File does not exist: " + fromFilename, Diag);
92 return report("File does not exist: " + toFilename, Diag);
98 return report("File was modified: " + fromFilename, Diag);
114 return report("Could not create directory: " + outputDir, Diag);
127 return report(EC.message(), Diag);
149 return report("Could not create file: " + tempPath.str(), Diag);
175 return report(StringRef("File does not exist: ") + origFE->getName(),
181 return report(E
253 bool FileRemapper::report(const Twine &err, DiagnosticsEngine &Diag) { function in class:FileRemapper
[all...]
/external/boringssl/src/util/bot/
H A Dupdate_clang.py37 def report(a, b, c): function in function:DownloadFile
42 urllib.urlretrieve(url, path, reporthook=report)
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
H A Dtest_reporter.py31 rep.report(exc_data)
45 rep.report(exc_data)
/external/clang/utils/ABITest/layout/
H A DMakefile1 # Usage: make test.N.report
28 .PHONY: test.%.report
29 test.%.report: test.%.x.diff test.%.y.diff
/external/llvm/bindings/ocaml/analysis/
H A Dllvm_analysis.mli17 human-readable validation report. See [llvm::verifyModule]. *)
22 human-readable validation report. See [llvm::verifyFunction]. *)
26 validation report to [stderr] and aborts the program if it is invalid. See
32 validation report to [stderr] and aborts the program if it is invalid. See
/external/llvm/utils/lit/utils/
H A Dcheck-coverage44 # Finally, generate the report.
45 (cd tests && python -m coverage report)
47 # Generate the HTML report, if requested.
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DLog4jLoggerFactory.java48 Util.report(part1);
49 Util.report(part2);
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
H A DJCLLoggerFactory.java52 Util.report(part1);
53 Util.report(part2);
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dcaptest.c54 static void report(void) function
231 report();
238 report();
256 report();
261 report();
/external/llvm/utils/lit/lit/formats/
H A Dbase.py111 report = """Command: %s\n""" % ' '.join(["'%s'" % a
114 report += """Temporary File: %s\n""" % tmp.name
115 report += "--\n%s--\n""" % open(tmp.name).read()
116 report += """Output:\n--\n%s--""" % diags
118 return lit.Test.FAIL, report
/external/emma/core/java12/com/vladium/emma/report/lcov/
H A DReportGenerator.java11 package com.vladium.emma.report.lcov;
18 import com.vladium.emma.report.AbstractReportGenerator;
19 import com.vladium.emma.report.AllItem;
20 import com.vladium.emma.report.ClassItem;
21 import com.vladium.emma.report.IItem;
22 import com.vladium.emma.report.ItemComparator;
23 import com.vladium.emma.report.MethodItem;
24 import com.vladium.emma.report.PackageItem;
25 import com.vladium.emma.report.SourcePathCache;
26 import com.vladium.emma.report
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp163 BugReport *report = local
168 bugreporter::trackNullOrUndefValue(N, bugreporter::getDerefExpr(S), *report);
172 report->addRange(*I);
174 C.emitReport(report);
186 BugReport *report = local
189 *report);
190 C.emitReport(report);
H A DVLASizeChecker.cpp75 BugReport *report = new BugReport(*BT, os.str(), N); local
76 report->addRange(SizeE->getSourceRange());
77 bugreporter::trackNullOrUndefValue(N, SizeE, *report);
78 C.emitReport(report);
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_query.c96 uint32_t report; member in struct:nv30_query
120 q->report = 1;
124 q->report = 1;
131 q->report = 2 + (q->type - NV30_QUERY_ZCULL_0);
159 PUSH_DATA (push, (q->report << 24) | q->qo[0]->hw->start);
166 PUSH_DATA (push, q->report);
187 PUSH_DATA (push, (q->report << 24) | q->qo[1]->hw->start);
/external/clang/
H A DMakefile101 report::
102 @ $(MAKE) -C test report
119 .PHONY: test report clean cscope.files
/external/emma/core/java12/com/vladium/emma/report/xml/
H A DReportGenerator.java9 package com.vladium.emma.report.xml;
31 import com.vladium.emma.report.AbstractReportGenerator;
32 import com.vladium.emma.report.AllItem;
33 import com.vladium.emma.report.ClassItem;
34 import com.vladium.emma.report.IItem;
35 import com.vladium.emma.report.IItemAttribute;
36 import com.vladium.emma.report.IItemMetadata;
37 import com.vladium.emma.report.ItemComparator;
38 import com.vladium.emma.report.MethodItem;
39 import com.vladium.emma.report
[all...]
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-report.c2 * builtin-report.c
4 * Builtin report command: Analyze the perf.data input file,
60 if (!strcmp(var, "report.group")) {
64 if (!strcmp(var, "report.percent-limit")) {
199 * The report shows the percentage of total branches captured
488 const char *help = "For a higher level overview, try: perf report --sort comm,dso";
741 "perf report [<options>]",
744 struct perf_report report = { local
773 OPT_BOOLEAN('f', "force", &report.force, "don't complain, do it"),
778 OPT_BOOLEAN('T', "threads", &report
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DPackageItem.java9 package com.vladium.emma.report;
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DElementList.java9 package com.vladium.emma.report.html.doc;
/external/google-breakpad/src/client/mac/sender/
H A Duploader.h76 - (void)report;
/external/tcpdump/
H A Dprint-mpcp.c149 u_int8_t queue_sets, queue_set, report_bitmap, report; local
216 report=1;
222 report,
226 report++;
/external/valgrind/include/
H A Dpub_tool_gdbserver.h51 // to the valgrind process. gdbserver will report to gdb that the
164 report indicates when to output an error msg with VG_(gdb_printf).
176 kwd_report_error report);

Completed in 4304 milliseconds

12345678910