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

1 2 3 4 5 6 7 8

  /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...]
  /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/clang/lib/StaticAnalyzer/Checkers/
NSAutoreleasePoolChecker.cpp 71 BugReport *Report = new BugReport(*BT, "Use -drain instead of -release when "
73 Report->addRange(msg.getSourceRange());
74 C.emitReport(Report);
ReturnUndefChecker.cpp 78 BugReport *Report = new BugReport(BT, BT.getDescription(), N);
80 Report->addRange(RetE->getSourceRange());
81 bugreporter::trackNullOrUndefValue(N, TrackingE ? TrackingE : RetE, *Report);
83 C.emitReport(Report);
105 // The return value is known to be null. Emit a bug report.
MacOSKeychainAPIChecker.cpp 251 // Report deallocator mismatch. Remove the region from tracking - reporting a
271 BugReport *Report = new BugReport(*BT, os.str(), N);
272 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
273 Report->addRange(ArgExpr->getSourceRange());
274 markInteresting(Report, AP);
275 C.emitReport(Report);
312 BugReport *Report = new BugReport(*BT, os.str(), N);
313 Report->addVisitor(new SecKeychainBugVisitor(V));
314 Report->addRange(ArgExpr->getSourceRange());
315 Report->markInteresting(AS->Region)
    [all...]
  /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
125 Report report = apiCheck.checkApi(args); local
133 Report report = apiCheck.checkApi(args); local
141 Report report = apiCheck.checkApi(args); local
149 Report report = apiCheck.checkApi(args); local
157 Report report = apiCheck.checkApi(args); local
165 Report report = apiCheck.checkApi(args); local
173 Report report = apiCheck.checkApi(args); local
181 Report report = apiCheck.checkApi(args); local
189 Report report = apiCheck.checkApi(args); local
197 Report report = apiCheck.checkApi(args); local
205 Report report = apiCheck.checkApi(args); local
213 Report report = apiCheck.checkApi(args); local
221 Report report = apiCheck.checkApi(args); local
229 Report report = apiCheck.checkApi(args); local
237 Report report = apiCheck.checkApi(args); local
245 Report report = apiCheck.checkApi(args); local
253 Report report = apiCheck.checkApi(args); local
261 Report report = apiCheck.checkApi(args); local
269 Report report = apiCheck.checkApi(args); local
277 Report report = apiCheck.checkApi(args); local
285 Report report = apiCheck.checkApi(args); local
293 Report report = apiCheck.checkApi(args); local
301 Report report = apiCheck.checkApi(args); local
309 Report report = apiCheck.checkApi(args); local
317 Report report = apiCheck.checkApi(args); local
325 Report report = apiCheck.checkApi(args); local
333 Report report = apiCheck.checkApi(args); local
341 Report report = apiCheck.checkApi(args); local
349 Report report = apiCheck.checkApi(args); local
357 Report report = apiCheck.checkApi(args); local
365 Report report = apiCheck.checkApi(args); local
373 Report report = apiCheck.checkApi(args); local
381 Report report = apiCheck.checkApi(args); local
389 Report report = apiCheck.checkApi(args); local
397 Report report = apiCheck.checkApi(args); local
405 Report report = apiCheck.checkApi(args); local
    [all...]
  /external/clang/lib/Frontend/
Warnings.cpp 41 Diags.Report(isPositive? diag::warn_unknown_warning_option_suggest :
45 Diags.Report(isPositive? diag::warn_unknown_warning_option :
87 for (unsigned Report = 0, ReportEnd = 2; Report != ReportEnd; ++Report) {
88 bool SetDiagnostic = (Report == 0);
143 if (Report)
144 Diags.Report(diag::warn_unknown_warning_specifier)
171 if (Report)
172 Diags.Report(diag::warn_unknown_warning_specifier
    [all...]
TextDiagnosticBuffer.cpp 68 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Error,
71 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Warning,
74 Diags.Report(Diags.getCustomDiagID(DiagnosticsEngine::Note,
CreateInvocationFromCommandLine.cpp 69 Diags->Report(diag::err_fe_expected_compiler_job) << OS.str();
75 Diags->Report(diag::err_fe_expected_clang_command);
CompilerInstance.cpp 114 Diags.Report(diag::warn_fe_cc_log_diagnostics_failure)
141 Diags.Report(diag::warn_fe_serialized_diag_failure)
362 PP.getDiagnostics().Report(diag::err_fe_invalid_code_complete_file)
390 getPreprocessor().getDiagnostics().Report(diag::err_fe_stdout_binary);
442 getDiagnostics().Report(diag::err_unable_to_rename_temp)
481 getDiagnostics().Report(diag::err_fe_unable_to_open_output)
604 Diags.Report(diag::err_fe_error_reading) << InputFile;
615 Diags.Report(diag::err_cannot_open_file) << InputFile << ec.message();
629 Diags.Report(diag::err_fe_error_reading_stdin);
845 ImportingInstance.getDiagnostics().Report(diag::err_module_map_temp_file
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux.cc 100 Report("Could not attach to thread %d (errno %d).\n", thread_id, errno);
104 Report("Attached to thread %d.\n", thread_id);
111 // doesn't hurt to report it.
112 Report("Waiting on thread %d failed, detaching (errno %d).\n", thread_id,
127 Report("Detached from thread %d.\n", tid);
132 Report("Could not detach from thread %d (errno %d).\n", tid, errno);
234 Report("Failed suspending threads.\n");
295 Report("Failed spawning a tracer thread (errno %d).\n", errno);
311 Report("Waiting on the tracer thread failed (errno %d).\n", errno);
sanitizer_posix.cc 63 // The Report() and CHECK calls below may call mmap recursively and fail.
69 Report("ERROR: %s failed to allocate 0x%zx (%zd) bytes of %s: %d\n",
81 Report("ERROR: %s failed to deallocate 0x%zx (%zd) bytes at address %p\n",
95 Report("ERROR: "
109 Report("ERROR:"
168 Report("Process memory map follows:\n");
173 Report("End of process memory map.\n");
199 Report("ERROR: %s setrlimit() failed %d\n", SanitizerToolName, errno);
sanitizer_symbolizer_linux.cc 40 Report("WARNING: invalid path to external symbolizer!\n");
59 Report("WARNING: Can't create a socket pair to start "
86 Report("WARNING: failed to fork external symbolizer "
117 Report("WARNING: external symbolizer didn't start up correctly!\n");
  /external/clang/lib/Lex/
ModuleMap.cpp 52 Diags->Report(Unresolved.Id[0].second,
65 Diags->Report(Unresolved.Id[I].second,
148 // If a header is not available, don't report that it maps to anything.
223 // If a header corresponds to an unavailable module, don't report
825 Diags.Report(LToken.getLocation(), diag::err_invalid_string_udl);
853 Diags.Report(LToken.getLocation(), diag::err_mmap_unknown_token);
921 Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module_name);
982 Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module);
1003 Diags.Report(Id.front().second, diag::err_mmap_nested_submodule_id)
1011 Diags.Report(ExplicitLoc, diag::err_mmap_explicit_top_level)
    [all...]
  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 42 DiagEngine->Report(
67 DiagEngine->Report(
92 DiagEngine->Report(
124 DiagEngine->Report(
148 DiagEngine->Report(
182 DiagEngine->Report(
215 DiagEngine->Report(
239 DiagEngine->Report(
259 DiagEngine->Report(
281 DiagEngine->Report(
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiCheck.java 67 Report report = acheck.checkApi(originalArgs); local
69 Errors.printErrors(report.errors());
70 System.exit(report.code);
77 public Report checkApi(String[] originalArgs) {
99 return new Report(2, Errors.getErrors());
113 return new Report(1, Errors.getErrors());
121 return new Report(Errors.hadError ? 1 : 0, Errors.getErrors());
201 public class Report {
205 private Report(int code, Set<ErrorMessage> errors)
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
CheckerRegistration.cpp 95 diags->Report(diag::warn_incompatible_analyzer_plugin_api)
97 diags->Report(diag::note_incompatible_analyzer_plugin_api)
121 diags.Report(diag::err_unknown_analyzer_checker)
  /external/compiler-rt/lib/asan/
asan_thread.cc 51 Report("T%d TSDDtor\n", summary->tid());
60 Report("T%d exited\n", tid());
81 Report("T%d: stack [%p,%p) size 0x%zx; local=%p\n",
asan_mac.cc 162 Report("exec()-ing the program with\n");
163 Report("%s=%s\n", kDyldInsertLibraries, new_env);
164 Report("to enable ASan wrappers.\n");
165 Report("Set ASAN_OPTIONS=allow_reexec=0 to disable this.\n");
309 Report("asan_dispatch_call_block_and_release(): "
344 Report(#dispatch_x_f "(): context: %p, pthread_self: %p\n", \
362 Report("dispatch_after_f: %p\n", asan_ctxt);
375 Report("dispatch_group_async_f(): context: %p, pthread_self: %p\n",
asan_posix.cc 47 Report("Installed the sigaction for signal %d\n", signum);
74 Report("Alternative stack for T%d set: [%p,%p)\n",
  /external/clang/tools/driver/
cc1as_main.cpp 158 Diags.Report(diag::err_drv_missing_argument)
166 Diags.Report(diag::err_drv_unknown_argument) << (*it) ->getAsString(*Args);
200 Diags.Report(diag::err_drv_unknown_argument) << A->getAsString(*Args);
217 Diags.Report(diag::err_drv_invalid_value)
255 Diags.Report(diag::err_fe_unable_to_open_output)
269 Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
276 Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
369 Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
390 Diags.Report(diag::err_fe_error_backend) << Message;
  /cts/suite/audio_quality/executable/src/
main.cpp 25 #include "Report.h"
30 // For flushing report and log before exiting
39 Report::Finalize();
40 // create zip file after log and report files are closed.
89 fprintf(stderr, "cannot prepare report dir");
108 if (Report::Instance(dirName.string()) == NULL) {
  /external/grub/util/
grub-md5-crypt 41 Report bugs to <bug-grub@gnu.org>.
grub-md5-crypt.in 41 Report bugs to <bug-grub@gnu.org>.
grub-terminfo 30 Report bugs to <bug-grub@gnu.org>.

Completed in 356 milliseconds

1 2 3 4 5 6 7 8