HomeSort by relevance Sort by last modified time
    Searched refs:report (Results 76 - 100 of 389) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/emma/report/
IItem.java 9 package com.vladium.emma.report;
IItemMetadata.java 9 package com.vladium.emma.report;
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 71 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(errMsg, Diag)
255 bool FileRemapper::report(const Twine &err, DiagnosticsEngine &Diag) { function in class:FileRemapper
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
incident_report_uploader_impl_unittest.cc 40 safe_browsing::ClientIncidentReport report; local
46 report));
  /external/clang/utils/ABITest/layout/
Makefile 1 # Usage: make test.N.report
28 .PHONY: test.%.report
29 test.%.report: test.%.x.diff test.%.y.diff
  /external/llvm/bindings/ocaml/analysis/
llvm_analysis.mli 17 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/
check-coverage 44 # 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/
captest.c 54 static void report(void) function
231 report();
238 report();
256 report();
261 report();
  /external/llvm/utils/lit/lit/formats/
base.py 111 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/
ReportGenerator.java 11 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.SrcFileItem
    [all...]
  /external/chromium_org/content/renderer/media/
peer_connection_tracker.cc 207 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) {
229 stats.reset(GetDictValueStats(report));
238 result->SetString("id", report.id);
239 result->SetString("type", report.type)
254 base::DictionaryValue* report = GetDictValue(reports[i]); variable
    [all...]
  /external/chromium_org/device/hid/
hid_connection_linux.cc 92 // 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.size = size
211 PendingHidReport report = pending_reports_.front(); local
    [all...]
hid_connection_mac.cc 123 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 ID if th
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_query.c 96 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/
DereferenceChecker.cpp 163 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);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_query.c 96 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/
Makefile 101 report::
102 @ $(MAKE) -C test report
119 .PHONY: test report clean cscope.files
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 9 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.PackageItem
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
statscollector_unittest.cc 151 bool GetValue(const StatsReport* report,
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,
543 const StatsReport* report = FindNthReportByType( local
1317 const StatsReport* report = FindNthReportByType( local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-report.c 2 * 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.show_threads
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PingLoader.h 71 static void sendViolationReport(LocalFrame*, const KURL& reportURL, PassRefPtr<FormData> report, ViolationReportType);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
__init__.py 56 report = _singleton_method('report') variable
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
DiagnosticsBase.cpp 18 void Diagnostics::report(ID id, function in class:pp::Diagnostics
DiagnosticsBase.h 75 void report(ID id, const SourceLocation &loc, const std::string &text);
  /external/chromium_org/v8/tools/push-to-trunk/
script_test.py 50 print cov.report()

Completed in 1130 milliseconds

1 2 34 5 6 7 8 91011>>