| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | CompilerInstance.h | 239 return *Invocation; in getInvocation() 263 return Invocation->getCodeGenOpts(); in getCodeGenOpts() 266 return Invocation->getCodeGenOpts(); in getCodeGenOpts() 277 return Invocation->getDiagnosticOpts(); in getDiagnosticOpts() 280 return Invocation->getDiagnosticOpts(); in getDiagnosticOpts() 284 return Invocation->getFileSystemOpts(); in getFileSystemOpts() 291 return Invocation->getFrontendOpts(); in getFrontendOpts() 294 return Invocation->getFrontendOpts(); in getFrontendOpts() 309 return Invocation->getAPINotesOpts(); in getAPINotesOpts() 330 return Invocation->getTargetOpts(); in getTargetOpts() [all …]
|
| H A D | PrecompiledPreamble.h | 85 Build(const CompilerInvocation &Invocation, 112 bool CanReuse(const CompilerInvocation &Invocation,
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | Tooling.cpp | 179 Invocation->getCodeGenOpts().DisableFree = false; in newInvocation() 180 return Invocation; in newInvocation() 221 ToolInvocation Invocation( in runToolOnCodeWithArgs() local 224 return Invocation.run(); in runToolOnCodeWithArgs() 423 std::unique_ptr<CompilerInvocation> Invocation( in run() local 450 Compiler.setInvocation(std::move(Invocation)); in runInvocation() 623 if (!Invocation.run()) { in run() 654 Invocation, std::move(PCHContainerOps), in runInvocation() 703 ToolInvocation Invocation( in buildASTFromCodeWithArgs() local 706 Invocation.setDiagnosticConsumer(DiagConsumer); in buildASTFromCodeWithArgs() [all …]
|
| /freebsd-14.2/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbinput.c | 488 char *Invocation = Help->Invocation; in AcpiDbMatchCommandHelp() local 494 if (*Invocation != ' ') in AcpiDbMatchCommandHelp() 499 while (*Invocation == ' ') in AcpiDbMatchCommandHelp() 501 Invocation++; in AcpiDbMatchCommandHelp() 506 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp() 508 if (tolower ((int) *Command) != tolower ((int) *Invocation)) in AcpiDbMatchCommandHelp() 513 Invocation++; in AcpiDbMatchCommandHelp() 522 AcpiOsPrintf ("%-38s : %s", Help->Invocation, Help->Description); in AcpiDbMatchCommandHelp() 555 while (Next->Invocation) in AcpiDbDisplayCommandInfo() 595 while (Next->Invocation) in AcpiDbDisplayHelp() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | ModelInjector.cpp | 66 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation()); in onBodySynthesis() local 68 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in onBodySynthesis() 74 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; in onBodySynthesis() 79 Instance.setInvocation(std::move(Invocation)); in onBodySynthesis()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | llvm-cov.cpp | 79 std::string Invocation = std::string(argv[0]) + " " + argv[1]; in main() local 80 argv[1] = Invocation.c_str(); in main()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ClangSrcLocDump.cpp | 134 auto Invocation = std::make_unique<CompilerInvocation>(); in main() local 135 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, Diagnostics); in main() 138 Compiler.setInvocation(std::move(Invocation)); in main()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningWorker.cpp | 148 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, in runInvocation() argument 153 CompilerInvocation OriginalInvocation(*Invocation); in runInvocation() 171 ScanInstance.setInvocation(std::move(Invocation)); in runInvocation() 411 ToolInvocation Invocation(std::move(CommandLine), &Action, &FM, in createAndRunToolInvocation() local 413 Invocation.setDiagnosticConsumer(Diags.getClient()); in createAndRunToolInvocation() 414 Invocation.setDiagnosticOptions(&Diags.getDiagnosticOptions()); in createAndRunToolInvocation() 415 if (!Invocation.run()) in createAndRunToolInvocation()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 261 if (Invocation && OwnsRemappedFileBuffers) { in ~ASTUnit() 1134 if (!Invocation) in Parse() 1490 if (Invocation && !Invocation->getFrontendOpts().Inputs.empty()) { in getMainFileName() 1527 AST->Invocation = std::move(CI); in create() 1678 if (!Invocation) in LoadFromCompilerInvocation() 1685 Invocation->getFrontendOpts().DisableFree = false; in LoadFromCompilerInvocation() 1726 AST->Invocation = std::move(CI); in LoadFromCompilerInvocation() 1824 AST->Invocation = CI; in LoadFromCommandLine() 1854 if (!Invocation) in Reparse() 1872 Invocation->getPreprocessorOpts().clearRemappedFiles(); in Reparse() [all …]
|
| H A D | CompilerInstance.cpp | 69 Invocation(new CompilerInvocation()), in CompilerInstance() 80 Invocation = std::move(Value); in setInvocation() 1171 auto Invocation = local 1174 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); 1178 Invocation->resetNonModularOptions(); 1191 Invocation->getLangOpts().ModuleName = 1210 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); 1223 DiagnosticOptions &DiagOpts = Invocation->getDiagnosticOpts(); 1227 Invocation->getModuleHash() && "Module hash mismatch!"); 1235 auto &Inv = *Invocation; [all …]
|
| /freebsd-14.2/contrib/ntp/ntpd/ |
| H A D | invoke-ntpd.menu | 1 * ntpd Invocation:: Invoking ntpd
|
| /freebsd-14.2/contrib/ntp/ntpq/ |
| H A D | invoke-ntpq.menu | 1 * ntpq Invocation:: Invoking ntpq
|
| /freebsd-14.2/contrib/ntp/scripts/ntptrace/ |
| H A D | invoke-ntptrace.menu | 1 * ntptrace Invocation:: Invoking ntptrace
|
| /freebsd-14.2/contrib/ntp/scripts/ntpsweep/ |
| H A D | invoke-ntpsweep.menu | 1 * ntpsweep Invocation:: Invoking ntpsweep
|
| /freebsd-14.2/contrib/ntp/sntp/ |
| H A D | invoke-sntp.menu | 1 * sntp Invocation:: Invoking sntp
|
| /freebsd-14.2/contrib/ntp/ntpsnmpd/ |
| H A D | invoke-ntpsnmpd.menu | 1 * ntpsnmpd Invocation:: Invoking ntpsnmpd
|
| /freebsd-14.2/contrib/ntp/scripts/ |
| H A D | invoke-plot_summary.menu | 1 * plot_summary Invocation:: Invoking plot_summary
|
| H A D | invoke-summary.menu | 1 * summary Invocation:: Invoking summary
|
| H A D | plot_summary.texi | 37 * plot_summary Invocation:: Invoking plot_summary
|
| /freebsd-14.2/contrib/ntp/ntpdc/ |
| H A D | invoke-ntpdc.menu | 1 * ntpdc Invocation:: Invoking ntpdc
|
| /freebsd-14.2/contrib/ntp/scripts/calc_tickadj/ |
| H A D | invoke-calc_tickadj.menu | 1 * calc_tickadj Invocation:: Invoking calc_tickadj
|
| /freebsd-14.2/contrib/ntp/util/ |
| H A D | invoke-ntp-keygen.menu | 1 * ntp-keygen Invocation:: Invoking ntp-keygen
|
| /freebsd-14.2/contrib/ntp/scripts/update-leap/ |
| H A D | invoke-update-leap.menu | 1 * update-leap Invocation:: Invoking update-leap
|
| /freebsd-14.2/contrib/ntp/scripts/ntp-wait/ |
| H A D | invoke-ntp-wait.menu | 1 * ntp-wait Invocation:: Invoking ntp-wait
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/ |
| H A D | Tooling.h | 86 runInvocation(std::shared_ptr<CompilerInvocation> Invocation, 103 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, 292 std::shared_ptr<CompilerInvocation> Invocation,
|