Searched refs:report (Results 76 - 100 of 361) sorted by relevance

1234567891011>>

/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp71 return report("Error opening file: " + infoFile, Diag);
80 return report("Invalid file data: '" + lines[idx+1] + "' not a number",
88 return report("File does not exist: " + fromFilename, Diag);
94 return report("File does not exist: " + toFilename, Diag);
100 return report("File was modified: " + fromFilename, Diag);
116 return report("Could not create directory: " + outputDir, Diag);
129 return report(errMsg, Diag);
151 return report("Could not create file: " + tempPath.str(), Diag);
179 return report(StringRef("File does not exist: ") + origFE->getName(),
185 return report(errMs
255 bool FileRemapper::report(const Twine &err, DiagnosticsEngine &Diag) { function in class:FileRemapper
[all...]
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dincident_report_uploader_impl_unittest.cc40 safe_browsing::ClientIncidentReport report; local
46 report));
H A Dincident_report_uploader_impl.h27 // An uploader of incident reports. A report is issued via the UploadReport
39 // Uploads a report with a caller-provided URL context. |callback| will be run
40 // when the upload is complete. Returns NULL if |report| cannot be serialized
45 const ClientIncidentReport& report);
/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/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/chromium_org/content/renderer/media/
H A Dpeer_connection_tracker.cc207 const webrtc::StatsReport& report) {
208 if (report.values.empty())
212 dict->SetDouble("timestamp", report.timestamp);
217 for (size_t i = 0; i < report.values.size(); ++i) {
218 values->AppendString(report.values[i].display_name());
219 values->AppendString(report.values[i].value);
226 static base::DictionaryValue* GetDictValue(const webrtc::StatsReport& report) { argument
229 stats.reset(GetDictValueStats(report));
238 result->SetString("id", report.id);
239 result->SetString("type", report
206 GetDictValueStats( const webrtc::StatsReport& report) argument
254 base::DictionaryValue* report = GetDictValue(reports[i]); variable
[all...]
/external/chromium_org/device/hid/
H A Dhid_connection_linux.cc92 // Linux expects the first byte of the buffer to always be a report ID so the
112 // The first byte of the destination buffer is the report ID being requested
113 // and is overwritten by the feature report.
123 VPLOG(1) << "Failed to get feature report";
134 // Linux expects the first byte of the buffer to always be a report ID so the
139 VPLOG(1) << "Failed to send feature report";
154 // Linux will not prefix the buffer with a report ID if they are not used
200 PendingHidReport report; local
201 report.buffer = buffer;
202 report
211 PendingHidReport report = pending_reports_.front(); local
[all...]
H A Dhid_connection_mac.cc123 VLOG(1) << "Failed to read input report: "
145 PendingHidReport report; local
146 report.buffer = buffer;
147 report.size = buffer->size();
148 pending_reports_.push(report);
156 PendingHidReport report = pending_reports_.front(); local
159 if (CompleteRead(report.buffer, report.size, read.callback)) {
189 VLOG(1) << "Failed to get feature report: "
206 // OS X only expects the first byte of the buffer to be the report I
[all...]
/external/chromium_org/third_party/mesa/src/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/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.cpp72 BugReport *report = new BugReport(*BT, os.str(), N); local
73 report->addRange(SizeE->getSourceRange());
74 bugreporter::trackNullOrUndefValue(N, SizeE, *report);
75 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/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatscollector_unittest.cc151 bool GetValue(const StatsReport* report, argument
154 StatsReport::Values::const_iterator it = report->values.begin();
155 for (; it != report->values.end(); ++it) {
182 // Finds the |n|-th report of type |type| in |reports|.
183 // |n| starts from 1 for finding the first report.
238 const StatsReport* report = FindReportById(reports, certificate_id); local
239 ASSERT_TRUE(report != NULL);
243 report, StatsReport::kStatsValueNameDer, &der_base64));
250 report,
259 report,
271 VerifyVoiceReceiverInfoReport( const StatsReport* report, const cricket::VoiceReceiverInfo& info) argument
326 VerifyVoiceSenderInfoReport(const StatsReport* report, const cricket::VoiceSenderInfo& sinfo) argument
543 const StatsReport* report = FindNthReportByType( local
1317 const StatsReport* report = FindNthReportByType( local
[all...]
/external/linux-tools-perf/perf-3.12.0/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A D__init__.py56 report = _singleton_method('report') variable
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DDiagnosticsBase.cpp18 void Diagnostics::report(ID id, function in class:pp::Diagnostics
/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/tcpdump/
H A Dprint-mpcp.c149 u_int8_t queue_sets, queue_set, report_bitmap, report; local
216 report=1;
222 report,
226 report++;

Completed in 624 milliseconds

1234567891011>>