HomeSort by relevance Sort by last modified time
    Searched refs:Report (Results 1 - 25 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/fpdfsdk/javascript/
report.cpp 7 #include "fpdfsdk/javascript/report.h"
23 IMPLEMENT_JS_CLASS(CJS_Report, Report)
25 Report::Report(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {}
27 Report::~Report() {}
29 bool Report::writeText(CJS_Runtime* pRuntime,
37 bool Report::save(CJS_Runtime* pRuntime,
report.h 14 class Report : public CJS_EmbedObj {
16 explicit Report(CJS_Object* pJSObject);
17 ~Report() override;
37 JS_STATIC_METHOD(save, Report)
38 JS_STATIC_METHOD(writeText, Report);
  /external/clang/unittests/Basic/
DiagnosticTest.cpp 30 Diags.Report(diag::err_target_unknown_triple) << "unknown";
33 Diags.Report(diag::err_cannot_open_file) << "file" << "error";
37 Diags.Report(diag::warn_mt_message) << "warning";
57 Diags.Report(diag::err_target_unknown_triple) << "unknown";
60 Diags.Report(diag::err_cannot_open_file) << "file" << "error";
64 Diags.Report(diag::warn_mt_message) << "warning";
  /cts/suite/audio_quality/lib/src/
Report.cpp 20 #include "Report.h"
24 Report* Report::mInstance = NULL;
26 Report* Report::Instance(const char* dirName)
29 mInstance = new Report();
34 void Report::Finalize()
41 Report::Report()
46 Report::~Report(
58 android::String8 report; local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIBugReporter.cpp 34 auto Report = llvm::make_unique<BugReport>(*DoubleNonblockingBugType,
37 Report->addRange(MPICallEvent.getSourceRange());
41 Report->addRange(Range);
43 Report->addVisitor(llvm::make_unique<RequestNodeVisitor>(
45 Report->markInteresting(RequestRegion);
47 BReporter.emitReport(std::move(Report));
57 auto Report =
62 Report->addRange(Range);
63 Report->addVisitor(llvm::make_unique<RequestNodeVisitor>(
65 Report->markInteresting(RequestRegion)
    [all...]
  /cts/suite/audio_quality/lib/include/
Report.h 28 * Class to generate report
30 class Report: public FileUtil {
33 * returns static instance of Report
34 * report without dir name, for the 1st call, will only print to stdout.
37 static Report* Instance(const char* dirName = NULL);
38 // should be called before finishing to flush the report to file system
46 Report();
47 ~Report();
56 static Report* mInstance;
  /external/doclava/test/doclava/
ApiCheckTest.java 23 import com.google.doclava.apicheck.ApiCheck.Report;
43 Report report = apiCheck.checkApi(args); local
44 assertEquals(report.errors().size(), 0);
50 Report report = apiCheck.checkApi(args); local
51 assertEquals(1, report.errors().size());
52 assertEquals(Errors.CHANGED_TYPE, report.errors().iterator().next().error());
58 Report report = apiCheck.checkApi(args) local
72 Report report = apiCheck.checkApi(args); local
85 Report report = apiCheck.checkApi(args); local
93 Report report = apiCheck.checkApi(args); local
101 Report report = apiCheck.checkApi(args); local
109 Report report = apiCheck.checkApi(args); local
117 Report report = apiCheck.checkApi(args); local
124 Report report = apiCheck.checkApi(args); local
131 Report report = apiCheck.checkApi(args); local
139 Report report = apiCheck.checkApi(args); local
147 Report report = apiCheck.checkApi(args); local
155 Report report = apiCheck.checkApi(args); local
163 Report report = apiCheck.checkApi(args); local
171 Report report = apiCheck.checkApi(args); local
179 Report report = apiCheck.checkApi(args); local
187 Report report = apiCheck.checkApi(args); local
195 Report report = apiCheck.checkApi(args); local
203 Report report = apiCheck.checkApi(args); local
211 Report report = apiCheck.checkApi(args); local
219 Report report = apiCheck.checkApi(args); local
227 Report report = apiCheck.checkApi(args); local
235 Report report = apiCheck.checkApi(args); local
243 Report report = apiCheck.checkApi(args); local
251 Report report = apiCheck.checkApi(args); local
259 Report report = apiCheck.checkApi(args); local
267 Report report = apiCheck.checkApi(args); local
275 Report report = apiCheck.checkApi(args); local
283 Report report = apiCheck.checkApi(args); local
291 Report report = apiCheck.checkApi(args); local
299 Report report = apiCheck.checkApi(args); local
307 Report report = apiCheck.checkApi(args); local
315 Report report = apiCheck.checkApi(args); local
323 Report report = apiCheck.checkApi(args); local
331 Report report = apiCheck.checkApi(args); local
338 Report report = apiCheck.checkApi(args); local
346 Report report = apiCheck.checkApi(args); local
354 Report report = apiCheck.checkApi(args); local
362 Report report = apiCheck.checkApi(args); local
370 Report report = apiCheck.checkApi(args); local
378 Report report = apiCheck.checkApi(args); local
386 Report report = apiCheck.checkApi(args); local
394 Report report = apiCheck.checkApi(args); local
402 Report report = apiCheck.checkApi(args); local
410 Report report = apiCheck.checkApi(args); local
418 Report report = apiCheck.checkApi(args); local
426 Report report = apiCheck.checkApi(args); local
434 Report report = apiCheck.checkApi(args); local
442 Report report = apiCheck.checkApi(args); local
450 Report report = apiCheck.checkApi(args); local
458 Report report = apiCheck.checkApi(args); local
    [all...]
  /system/extras/simpleperf/
cmd_report_test.cpp 33 return CreateCommandInstance("report");
38 void Report(
73 Report(PERF_DATA);
79 Report(PERF_DATA_WITH_MINI_DEBUG_INFO);
85 Report(PERF_DATA, {"--sort", "pid"});
96 Report(PERF_DATA, {"--sort", "comm,pid,dso,symbol"});
112 Report(CALLGRAPH_FP_PERF_DATA, {"--children", "--sort", "symbol"});
159 Report(CALLGRAPH_FP_PERF_DATA, {"-g"});
162 Report(CALLGRAPH_FP_PERF_DATA, {"-g", "callee"});
165 Report(CALLGRAPH_FP_PERF_DATA, {"-g", "caller"})
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
NSAutoreleasePoolChecker.cpp 71 auto Report = llvm::make_unique<BugReport>(
74 Report->addRange(msg.getSourceRange());
75 C.emitReport(std::move(Report));
PthreadLockChecker.cpp 148 auto report = llvm::make_unique<BugReport>(
150 report->addRange(CE->getArg(0)->getSourceRange());
151 C.emitReport(std::move(report));
210 auto Report = llvm::make_unique<BugReport>(
212 Report->addRange(CE->getArg(0)->getSourceRange());
213 C.emitReport(std::move(Report));
233 auto report = llvm::make_unique<BugReport>(
236 report->addRange(CE->getArg(0)->getSourceRange());
237 C.emitReport(std::move(report));
278 auto Report = llvm::make_unique<BugReport>(*BT_destroylock, Message, N)
    [all...]
ReturnUndefChecker.cpp 87 auto Report = llvm::make_unique<BugReport>(BT, BT.getDescription(), N);
89 Report->addRange(RetE->getSourceRange());
90 bugreporter::trackNullOrUndefValue(N, TrackingE ? TrackingE : RetE, *Report);
92 C.emitReport(std::move(Report));
114 // The return value is known to be null. Emit a bug report.
MacOSKeychainAPIChecker.cpp 242 // Report deallocator mismatch. Remove the region from tracking - reporting a
262 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N);
263 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first));
264 Report->addRange(ArgExpr->getSourceRange());
265 markInteresting(Report.get(), AP);
266 C.emitReport(std::move(Report));
307 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N);
308 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(V));
309 Report->addRange(ArgExpr->getSourceRange());
310 Report->markInteresting(AS->Region)
    [all...]
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 51 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Error, "%0"))
54 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Warning, "%0"))
57 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Remark, "%0"))
60 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Note, "%0"))
  /external/gptfdisk/
cgdisk.cc 69 Report("Warning! Non-GPT or damaged disk detected! This program will attempt to\n"
76 Report("Could not load partitions from '" + device + "'! Aborting!");
  /frameworks/base/services/core/java/com/android/server/am/
InstrumentationReporter.java 36 ArrayList<Report> mPendingReports;
50 ArrayList<Report> reports;
74 final Report rep = reports.get(i);
98 final class Report {
105 Report(int type, IInstrumentationWatcher watcher, ComponentName name, int resultCode,
117 if (DEBUG) Slog.d(TAG, "Report status to " + watcher
120 report(new Report(REPORT_TYPE_STATUS, watcher, name, resultCode, results)); method
125 if (DEBUG) Slog.d(TAG, "Report finished to " + watcher
128 report(new Report(REPORT_TYPE_FINISHED, watcher, name, resultCode, results)) method
131 private void report(Report report) { method in class:InstrumentationReporter
    [all...]
  /external/compiler-rt/lib/scudo/
scudo_termination.cpp 36 Report("Sanitizer CHECK failed: %s:%d %s (%lld, %lld)\n", file, line, cond,
  /external/clang/lib/StaticAnalyzer/Frontend/
CheckerRegistration.cpp 58 diags->Report(diag::err_fe_unable_to_load_plugin) << *i << err;
97 diags->Report(diag::warn_incompatible_analyzer_plugin_api)
99 diags->Report(diag::note_incompatible_analyzer_plugin_api)
124 diags.Report(diag::err_unknown_analyzer_checker)
126 diags.Report(diag::note_suggest_disabling_all_checkers);
  /external/clang/lib/Basic/
Warnings.cpp 39 Diags.Report(diag::warn_unknown_diag_option)
80 for (unsigned Report = 0, ReportEnd = 2; Report != ReportEnd; ++Report) {
81 bool SetDiagnostic = (Report == 0);
138 if (Report)
139 Diags.Report(diag::warn_unknown_warning_specifier)
166 if (Report)
167 Diags.Report(diag::warn_unknown_warning_specifier)
189 if (Report) {
    [all...]
  /external/compiler-rt/lib/asan/
asan_flags.cc 131 Report("%s: detect_leaks is not supported on this platform.\n",
151 Report("%s: please use either 'quarantine_size' (deprecated) or "
163 Report("WARNING: strlen interceptor is enabled even though replace_str=0. "
167 Report("WARNING: strchr* interceptors are enabled even though "
asan_linux.cc 108 Report("Your application is linked against incompatible ASan runtimes.\n");
120 Report("ASan runtime does not come first in initial library list; "
145 Report("Your application is linked against "
  /external/v8/tools/clang/plugins/
SuppressibleDiagnosticBuilder.h 23 : DiagnosticBuilder(diagnostics->Report(loc, diagnostic_id)),
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_win.cc 59 Report("*** WARNING: Failed to initialize DbgHelp! ***\n");
60 Report("*** Most likely this means that the app is already ***\n");
61 Report("*** using DbgHelp, possibly with incompatible flags. ***\n");
62 Report("*** Due to technical reasons, symbolization might crash ***\n");
63 Report("*** or produce wrong results. ***\n");
76 Report("*** WARNING: Failed to SymGetSearchPathW ***\n");
86 Report("*** WARNING: Failed to getting the EXE directory ***\n");
95 Report("*** WARNING: Failed to SymSetSearchPathW\n");
sanitizer_libignore.cc 27 Report("%s: too many ignored libraries (max: %d)\n", SanitizerToolName,
67 Report("%s: called_from_lib suppression '%s' is matched against"
88 Report("%s: library '%s' that was matched against called_from_lib"
  /external/compiler-rt/lib/esan/
cache_frag.cpp 63 // FIXME: provide a better struct field access summary report.
64 Report("%s: total struct field access count = %llu\n", SanitizerToolName,
86 // We skip the union report to avoid confusion.
100 Report(" %s %.*s\n", type, end - start, start);
101 Report(" size = %u, count = %llu, ratio = %llu, array access = %llu\n",
105 Report(" #%2u: offset = %u,\t size = %u,"
112 Report(" #%2u: count = %llu\n", i, Struct->FieldCounters[i]);
149 // collect the result for later report.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidpi.h 210 NTSTATUS NTAPI HidP_InitializeReportForID (HIDP_REPORT_TYPE ReportType, UCHAR ReportID, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
211 NTSTATUS NTAPI HidP_SetData (HIDP_REPORT_TYPE ReportType, PHIDP_DATA DataList, PULONG DataLength, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
212 NTSTATUS NTAPI HidP_GetData (HIDP_REPORT_TYPE ReportType, PHIDP_DATA DataList, PULONG DataLength, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
214 NTSTATUS NTAPI HidP_SetUsages (HIDP_REPORT_TYPE ReportType, USAGE UsagePage, USHORT LinkCollection, PUSAGE UsageList, PULONG UsageLength, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
215 NTSTATUS NTAPI HidP_UnsetUsages (HIDP_REPORT_TYPE ReportType, USAGE UsagePage, USHORT LinkCollection, PUSAGE UsageList, PULONG UsageLength, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
216 NTSTATUS NTAPI HidP_GetUsages (HIDP_REPORT_TYPE ReportType, USAGE UsagePage, USHORT LinkCollection, PUSAGE UsageList, PULONG UsageLength, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
217 NTSTATUS NTAPI HidP_GetUsagesEx (HIDP_REPORT_TYPE ReportType, USHORT LinkCollection, PUSAGE_AND_PAGE ButtonList, ULONG *UsageLength, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
219 NTSTATUS NTAPI HidP_SetUsageValue (HIDP_REPORT_TYPE ReportType, USAGE UsagePage, USHORT LinkCollection, USAGE Usage, ULONG UsageValue, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
220 NTSTATUS NTAPI HidP_SetScaledUsageValue (HIDP_REPORT_TYPE ReportType, USAGE UsagePage, USHORT LinkCollection, USAGE Usage, LONG UsageValue, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength);
221 NTSTATUS NTAPI HidP_SetUsageValueArray (HIDP_REPORT_TYPE ReportType, USAGE UsagePage, USHORT LinkCollection, USAGE Usage, PCHAR UsageValue, USHORT UsageValueByteLength, PHIDP_PREPARSED_DATA PreparsedData, PCHAR Report, ULONG ReportLength)
    [all...]

Completed in 686 milliseconds

1 2 3 4 5 6 7 8 91011>>