/freebsd-src/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | CompilerInstance.h | 81 std::shared_ptr<CompilerInvocation> Invocation; variable 253 /// @name Compiler Invocation and Options in setBuildGlobalModuleIndex() 256 bool hasInvocation() const { return Invocation != nullptr; } 259 assert(Invocation && "Compiler instance has no invocation!"); 260 return *Invocation; in getAnalyzerOpts() 263 std::shared_ptr<CompilerInvocation> getInvocationPtr() { return Invocation; } in getCodeGenOpts() 281 AnalyzerOptions &getAnalyzerOpts() { return Invocation->getAnalyzerOpts(); } in getDiagnosticOpts() 284 return Invocation->getCodeGenOpts(); in getFileSystemOpts() 287 return Invocation->getCodeGenOpts(); in getFileSystemOpts() 291 return Invocation in getFrontendOpts() [all...] |
H A D | PrecompiledPreamble.h | 56 /// Try to build PrecompiledPreamble for \p Invocation. See 59 /// \param Invocation Original CompilerInvocation with options to compile the 85 Build(const CompilerInvocation &Invocation, 112 bool CanReuse(const CompilerInvocation &Invocation,
|
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/ |
H A D | Tooling.cpp | 175 CompilerInvocation *Invocation = new CompilerInvocation; in newInvocation() local 176 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, *Diagnostics, in newInvocation() 178 Invocation->getFrontendOpts().DisableFree = false; in newInvocation() 179 Invocation->getCodeGenOpts().DisableFree = false; in newInvocation() 180 return Invocation; in newInvocation() 221 ToolInvocation Invocation( in runToolOnCodeWithArgs() local 224 return Invocation.run(); in runToolOnCodeWithArgs() 399 std::unique_ptr<CompilerInvocation> Invocation( in run() local 403 return Action->runInvocation(std::move(Invocation), Files, in run() 423 std::unique_ptr<CompilerInvocation> Invocation( in run() local 431 runInvocation(const char * BinaryName,driver::Compilation * Compilation,std::shared_ptr<CompilerInvocation> Invocation,std::shared_ptr<PCHContainerOperations> PCHContainerOps) runInvocation() argument 445 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,FileManager * Files,std::shared_ptr<PCHContainerOperations> PCHContainerOps,DiagnosticConsumer * DiagConsumer) runInvocation() argument 619 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), run() local 649 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,FileManager * Files,std::shared_ptr<PCHContainerOperations> PCHContainerOps,DiagnosticConsumer * DiagConsumer) runInvocation() argument 703 ToolInvocation Invocation( buildASTFromCodeWithArgs() local [all...] |
/freebsd-src/sys/contrib/dev/acpica/components/debugger/ |
H A D | dbinput.c | 491 char *Invocation = Help->Invocation; in AcpiDbMatchCommandHelp() local 497 if (*Invocation != ' ') in AcpiDbMatchCommandHelp() 502 while (*Invocation == ' ') in AcpiDbMatchCommandHelp() 504 Invocation++; in AcpiDbMatchCommandHelp() 509 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp() 511 if (tolower ((int) *Command) != tolower ((int) *Invocation)) in AcpiDbMatchCommandHelp() 516 Invocation++; in AcpiDbMatchCommandHelp() 525 AcpiOsPrintf ("%-38s : %s", Help->Invocation, Hel in AcpiDbMatchCommandHelp() [all...] |
/freebsd-src/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-src/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-src/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
H A D | ClangSrcLocDump.cpp |
|
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningWorker.cpp | 296 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, 301 CompilerInvocation OriginalInvocation(*Invocation); 321 ScanInstance.setInvocation(std::move(Invocation)); in DependencyScanningWorker() 578 ToolInvocation Invocation(std::move(CommandLine), &Action, &FM, 580 Invocation.setDiagnosticConsumer(Diags.getClient()); 581 Invocation.setDiagnosticOptions(&Diags.getDiagnosticOptions()); 582 if (!Invocation.run()) 148 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,FileManager * FileMgr,std::shared_ptr<PCHContainerOperations> PCHContainerOps,DiagnosticConsumer * DiagConsumer) runInvocation() argument 411 ToolInvocation Invocation(std::move(CommandLine), &Action, &FM, createAndRunToolInvocation() local
|
/freebsd-src/contrib/llvm-project/clang/lib/Frontend/ |
H A D | ASTUnit.cpp | 156 /// and file-to-buffer remappings inside \p Invocation. 158 getBufferForFileHandlingRemapping(const CompilerInvocation &Invocation, in getBufferForFileHandlingRemapping() 161 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts(); in getBufferForFileHandlingRemapping() 262 if (Invocation && OwnsRemappedFileBuffers) { in ~ASTUnit() 263 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in ~ASTUnit() 1146 if (!Invocation) in Parse() 1153 auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation); in Parse() 1203 "Invocation must have exactly one source file!"); in Parse() 1503 if (Invocation && !Invocation in getMainFileName() 157 getBufferForFileHandlingRemapping(const CompilerInvocation & Invocation,llvm::vfs::FileSystem * VFS,StringRef FilePath,bool isVolatile) getBufferForFileHandlingRemapping() argument [all...] |
H A D | CompilerInstance.cpp | 69 Invocation(new CompilerInvocation()), in CompilerInstance() 80 Invocation = std::move(Value); in setInvocation() 455 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOptsPtr(), in createPreprocessor() 1182 auto Invocation = 1185 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in __anon52f0fd0b0602() 1189 Invocation->resetNonModularOptions(); 1193 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts(); 1202 Invocation->getLangOpts().ModuleName = 1206 Invocation->getLangOpts().CurrentModule = std::string(ModuleName); 1211 FrontendOptions &FrontendOpts = Invocation 1171 auto Invocation = global() local [all...] |
/freebsd-src/contrib/ntp/scripts/ntpsweep/ |
H A D | invoke-ntpsweep.menu | 1 * ntpsweep Invocation:: Invoking ntpsweep
|
/freebsd-src/contrib/ntp/scripts/ |
H A D | invoke-summary.menu | 1 * summary Invocation:: Invoking summary
|
H A D | invoke-plot_summary.menu | 1 * plot_summary Invocation:: Invoking plot_summary
|
H A D | summary.texi | 37 * summary Invocation:: Invoking summary
|
/freebsd-src/contrib/ntp/ntpq/ |
H A D | invoke-ntpq.menu | 1 * ntpq Invocation:: Invoking ntpq
|
/freebsd-src/contrib/ntp/ntpsnmpd/ |
H A D | invoke-ntpsnmpd.menu | 1 * ntpsnmpd Invocation:: Invoking ntpsnmpd
|
/freebsd-src/contrib/ntp/ntpd/ |
H A D | invoke-ntpd.menu | 1 * ntpd Invocation:: Invoking ntpd
|
/freebsd-src/contrib/ntp/ntpdc/ |
H A D | invoke-ntpdc.menu | 1 * ntpdc Invocation:: Invoking ntpdc
|
/freebsd-src/contrib/ntp/sntp/ |
H A D | invoke-sntp.menu | 1 * sntp Invocation:: Invoking sntp
|
/freebsd-src/contrib/ntp/scripts/ntptrace/ |
H A D | invoke-ntptrace.menu | 1 * ntptrace Invocation:: Invoking ntptrace
|
/freebsd-src/contrib/ntp/scripts/calc_tickadj/ |
H A D | invoke-calc_tickadj.menu | 1 * calc_tickadj Invocation:: Invoking calc_tickadj
|
/freebsd-src/contrib/ntp/scripts/ntp-wait/ |
H A D | invoke-ntp-wait.menu | 1 * ntp-wait Invocation:: Invoking ntp-wait
|
/freebsd-src/contrib/ntp/util/ |
H A D | invoke-ntp-keygen.menu | 1 * ntp-keygen Invocation:: Invoking ntp-keygen
|
/freebsd-src/contrib/ntp/scripts/update-leap/ |
H A D | invoke-update-leap.menu | 1 * update-leap Invocation:: Invoking update-leap
|
/freebsd-src/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,
|