| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | CompilerInstance.h | 230 return *Invocation; in getInvocation() 250 return Invocation->getAnalyzerOpts(); in getAnalyzerOpts() 254 return Invocation->getCodeGenOpts(); in getCodeGenOpts() 257 return Invocation->getCodeGenOpts(); in getCodeGenOpts() 268 return Invocation->getDiagnosticOpts(); in getDiagnosticOpts() 282 return Invocation->getFrontendOpts(); in getFrontendOpts() 285 return Invocation->getFrontendOpts(); in getFrontendOpts() 299 return *Invocation->getLangOpts(); in getLangOpts() 302 return *Invocation->getLangOpts(); in getLangOpts() 320 return Invocation->getTargetOpts(); in getTargetOpts() [all …]
|
| H A D | PrecompiledPreamble.h | 82 Build(const CompilerInvocation &Invocation, 107 bool CanReuse(const CompilerInvocation &Invocation,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | Tooling.cpp | 171 Invocation->getCodeGenOpts().DisableFree = false; in newInvocation() 172 return Invocation; in newInvocation() 213 ToolInvocation Invocation( in runToolOnCodeWithArgs() local 216 return Invocation.run(); in runToolOnCodeWithArgs() 377 std::unique_ptr<CompilerInvocation> Invocation( in run() local 404 Compiler.setInvocation(std::move(Invocation)); in runInvocation() 573 if (!Invocation.run()) { in run() 604 Invocation, std::move(PCHContainerOps), in runInvocation() 657 ToolInvocation Invocation( in buildASTFromCodeWithArgs() local 660 Invocation.setDiagnosticConsumer(DiagConsumer); in buildASTFromCodeWithArgs() [all …]
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | ModelInjector.cpp | 67 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation()); in onBodySynthesis() local 69 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in onBodySynthesis() 75 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; in onBodySynthesis() 80 Instance.setInvocation(std::move(Invocation)); in onBodySynthesis()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | llvm-cov.cpp | 80 std::string Invocation = std::string(argv[0]) + " " + argv[1]; in main() local 81 argv[1] = Invocation.c_str(); in main()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ClangSrcLocDump.cpp | 138 auto Invocation = std::make_unique<CompilerInvocation>(); in main() local 139 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, Diagnostics); in main() 142 Compiler.setInvocation(std::move(Invocation)); in main()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 263 if (Invocation && OwnsRemappedFileBuffers) { in ~ASTUnit() 1101 if (!Invocation) in Parse() 1456 if (Invocation && !Invocation->getFrontendOpts().Inputs.empty()) { in getMainFileName() 1493 AST->Invocation = std::move(CI); in create() 1644 if (!Invocation) in LoadFromCompilerInvocation() 1651 Invocation->getFrontendOpts().DisableFree = false; in LoadFromCompilerInvocation() 1692 AST->Invocation = std::move(CI); in LoadFromCompilerInvocation() 1781 AST->Invocation = CI; in LoadFromCommandLine() 1811 if (!Invocation) in Reparse() 1829 Invocation->getPreprocessorOpts().clearRemappedFiles(); in Reparse() [all …]
|
| H A D | CompilerInstance.cpp | 62 Invocation(new CompilerInvocation()), in CompilerInstance() 73 Invocation = std::move(Value); in setInvocation() 1067 auto Invocation = local 1070 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); 1074 Invocation->getLangOpts()->resetNonModularOptions(); 1090 Invocation->getLangOpts()->ModuleName = 1109 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); 1122 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; 1124 Invocation->getModuleHash() && "Module hash mismatch!"); 1132 auto &Inv = *Invocation; [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.cpp | 65 CompilerInvocation CI(Invocation); in getCanonicalCommandLine() 82 return serializeCompilerInvocation(Invocation); in getCanonicalCommandLineWithoutModulePaths() 237 MD.Invocation = MDC.makeInvocationForModuleBuildWithoutPaths(MD); in handleTopLevelModule() 238 MD.ID.ContextHash = MD.Invocation.getModuleHash(); in handleTopLevelModule()
|
| H A D | DependencyScanningWorker.cpp | 149 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, in runInvocation() argument 154 CompilerInvocation OriginalInvocation(*Invocation); in runInvocation() 158 Compiler.setInvocation(std::move(Invocation)); in runInvocation()
|
| /freebsd-13.1/contrib/ntp/sntp/ |
| H A D | invoke-sntp.menu | 1 * sntp Invocation:: Invoking sntp
|
| /freebsd-13.1/contrib/ntp/ntpsnmpd/ |
| H A D | invoke-ntpsnmpd.menu | 1 * ntpsnmpd Invocation:: Invoking ntpsnmpd
|
| /freebsd-13.1/contrib/ntp/ntpq/ |
| H A D | invoke-ntpq.menu | 1 * ntpq Invocation:: Invoking ntpq
|
| /freebsd-13.1/contrib/ntp/ntpd/ |
| H A D | invoke-ntpd.menu | 1 * ntpd Invocation:: Invoking ntpd
|
| /freebsd-13.1/contrib/ntp/ntpdc/ |
| H A D | invoke-ntpdc.menu | 1 * ntpdc Invocation:: Invoking ntpdc
|
| /freebsd-13.1/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
|
| /freebsd-13.1/contrib/ntp/scripts/calc_tickadj/ |
| H A D | invoke-calc_tickadj.menu | 1 * calc_tickadj Invocation:: Invoking calc_tickadj
|
| /freebsd-13.1/contrib/ntp/scripts/ntpsweep/ |
| H A D | invoke-ntpsweep.menu | 1 * ntpsweep Invocation:: Invoking ntpsweep
|
| /freebsd-13.1/contrib/ntp/scripts/ntptrace/ |
| H A D | invoke-ntptrace.menu | 1 * ntptrace Invocation:: Invoking ntptrace
|
| /freebsd-13.1/contrib/ntp/util/ |
| H A D | invoke-ntp-keygen.menu | 1 * ntp-keygen Invocation:: Invoking ntp-keygen
|
| /freebsd-13.1/contrib/ntp/scripts/ntp-wait/ |
| H A D | invoke-ntp-wait.menu | 1 * ntp-wait Invocation:: Invoking ntp-wait
|
| /freebsd-13.1/contrib/ntp/scripts/update-leap/ |
| H A D | invoke-update-leap.menu | 1 * update-leap Invocation:: Invoking update-leap
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/ |
| H A D | Tooling.h | 87 runInvocation(std::shared_ptr<CompilerInvocation> Invocation, 104 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, 284 std::shared_ptr<CompilerInvocation> Invocation,
|