/minix/external/bsd/llvm/dist/clang/include/clang/Frontend/ |
H A D | CompilerInstance.h | 209 return *Invocation; in getInvocation() 229 return Invocation->getAnalyzerOpts(); in getAnalyzerOpts() 233 return Invocation->getCodeGenOpts(); in getCodeGenOpts() 236 return Invocation->getCodeGenOpts(); in getCodeGenOpts() 247 return Invocation->getDiagnosticOpts(); in getDiagnosticOpts() 261 return Invocation->getFrontendOpts(); in getFrontendOpts() 264 return Invocation->getFrontendOpts(); in getFrontendOpts() 275 return *Invocation->getLangOpts(); in getLangOpts() 278 return *Invocation->getLangOpts(); in getLangOpts() 296 return Invocation->getTargetOpts(); in getTargetOpts() [all …]
|
H A D | ASTUnit.h | 114 IntrusiveRefCntPtr<CompilerInvocation> Invocation; variable 441 ComputedPreamble ComputePreamble(CompilerInvocation &Invocation,
|
/minix/external/bsd/llvm/dist/clang/lib/Tooling/ |
H A D | Tooling.cpp | 101 Invocation->getFrontendOpts().DisableFree = false; in newInvocation() 102 Invocation->getCodeGenOpts().DisableFree = false; in newInvocation() 104 return Invocation; in newInvocation() 137 Invocation.mapVirtualFile(FileNameRef, in runToolOnCodeWithArgs() 145 return Invocation.run(); in runToolOnCodeWithArgs() 241 clang::CompilerInvocation *Invocation) { in runInvocation() argument 243 if (Invocation->getHeaderSearchOpts().Verbose) { in runInvocation() 257 Compiler.setInvocation(Invocation); in runInvocation() 364 if (!Invocation.run()) { in run() 427 Invocation.mapVirtualFile(FileNameRef, in buildASTFromCodeWithArgs() [all …]
|
/minix/external/bsd/llvm/dist/clang/unittests/AST/ |
H A D | ExternalASTSourceTest.cpp | 51 CompilerInvocation *Invocation = new CompilerInvocation; in testExternalASTSource() local 52 Invocation->getPreprocessorOpts().addRemappedFile( in testExternalASTSource() 55 CompilerInvocation::CreateFromArgs(*Invocation, Args, in testExternalASTSource() 58 Compiler.setInvocation(Invocation); in testExternalASTSource()
|
/minix/external/bsd/llvm/dist/clang/unittests/Frontend/ |
H A D | FrontendActionTest.cpp | 172 CompilerInvocation *Invocation = new CompilerInvocation; in TEST() local 173 Invocation->getPreprocessorOpts().addRemappedFile( in TEST() 176 Invocation->getFrontendOpts().Inputs.push_back( in TEST() 178 Invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly; in TEST() 179 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu"; in TEST() 181 Compiler.setInvocation(Invocation); in TEST()
|
/minix/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
H A D | ModelInjector.cpp | 66 IntrusiveRefCntPtr<CompilerInvocation> Invocation( in onBodySynthesis() local 69 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in onBodySynthesis() 75 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; in onBodySynthesis() 80 Instance.setInvocation(&*Invocation); in onBodySynthesis()
|
/minix/external/bsd/llvm/dist/clang/unittests/Tooling/ |
H A D | ToolingTest.cpp | 156 clang::tooling::ToolInvocation Invocation(Args, new SyntaxOnlyAction, in TEST() local 158 Invocation.mapVirtualFile("test.cpp", "#include <abc>\n"); in TEST() 159 Invocation.mapVirtualFile("def/abc", "\n"); in TEST() 160 EXPECT_TRUE(Invocation.run()); in TEST() 175 clang::tooling::ToolInvocation Invocation(Args, new SyntaxOnlyAction, in TEST() local 177 Invocation.mapVirtualFile("test.cpp", "#include <abc>\n"); in TEST() 178 Invocation.mapVirtualFile("def/abc", "\n"); in TEST() 181 Invocation.mapVirtualFile("def/module.map", "\n"); in TEST() 182 EXPECT_TRUE(Invocation.run()); in TEST()
|
/minix/external/bsd/llvm/dist/clang/tools/diagtool/ |
H A D | ShowEnabledWarnings.cpp | 67 std::unique_ptr<CompilerInvocation> Invocation( in createDiagnostics() local 70 if (!Invocation) in createDiagnostics() 75 CompilerInstance::createDiagnostics(&Invocation->getDiagnosticOpts()); in createDiagnostics()
|
/minix/external/bsd/llvm/dist/llvm/tools/llvm-cov/ |
H A D | llvm-cov.cpp | 58 std::string Invocation = std::string(argv[0]) + " " + argv[1]; in main() local 59 argv[1] = Invocation.c_str(); in main()
|
/minix/external/bsd/llvm/dist/clang/include/clang/Tooling/ |
H A D | Tooling.h | 68 virtual bool runInvocation(clang::CompilerInvocation *Invocation, 84 bool runInvocation(clang::CompilerInvocation *Invocation, FileManager *Files, 231 clang::CompilerInvocation *Invocation);
|
/minix/external/bsd/llvm/dist/clang/lib/Frontend/ |
H A D | ASTUnit.cpp | 255 if (Invocation.get() && OwnsRemappedFileBuffers) { in ~ASTUnit() 1034 if (!Invocation) in Parse() 1045 CCInvocation(new CompilerInvocation(*Invocation)); in Parse() 1674 if (Invocation && !Invocation->getFrontendOpts().Inputs.empty()) { in getMainFileName() 1708 AST->Invocation = CI; in create() 1863 if (!Invocation) in LoadFromCompilerInvocation() 1868 Invocation->getFrontendOpts().DisableFree = false; in LoadFromCompilerInvocation() 1902 AST->Invocation = CI; in LoadFromCompilerInvocation() 1985 AST->Invocation = CI; in LoadFromCommandLine() 2010 if (!Invocation) in Reparse() [all …]
|
H A D | CompilerInstance.cpp | 56 Invocation(new CompilerInvocation()), ModuleManager(nullptr), in CompilerInstance() 66 Invocation = Value; in setInvocation() 866 IntrusiveRefCntPtr<CompilerInvocation> Invocation in compileModuleImpl() local 869 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in compileModuleImpl() 873 Invocation->getLangOpts()->resetNonModularOptions(); in compileModuleImpl() 878 const HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts(); in compileModuleImpl() 902 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); in compileModuleImpl() 907 InputKind IK = getSourceInputKindFromOptions(*Invocation->getLangOpts()); in compileModuleImpl() 912 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; in compileModuleImpl() 914 Invocation->getModuleHash() && "Module hash mismatch!"); in compileModuleImpl() [all …]
|
/minix/external/bsd/llvm/dist/llvm/tools/llvm-profdata/ |
H A D | llvm-profdata.cpp | 259 std::string Invocation(ProgName.str() + " " + argv[1]); in main() local 260 argv[1] = Invocation.c_str(); in main()
|
/minix/minix/drivers/power/acpi/include/ |
H A D | acdebug.h | 60 char *Invocation; /* Command Invocation */ member
|
/minix/external/bsd/file/dist/ |
H A D | INSTALL | 248 `configure' Invocation
|
/minix/external/bsd/bind/dist/contrib/perftcpdns/ |
H A D | configure | 1466 generated by GNU Autoconf 2.69. Invocation command line was 3731 generated by GNU Autoconf 2.69. Invocation command line was
|
/minix/external/bsd/bind/dist/contrib/queryperf/ |
H A D | configure | 1473 generated by GNU Autoconf 2.68. Invocation command line was 3509 generated by GNU Autoconf 2.68. Invocation command line was
|
/minix/external/bsd/nvi/dist/dist/ |
H A D | INSTALL | 317 `configure' Invocation
|
/minix/external/bsd/flex/dist/ |
H A D | INSTALL | 316 `configure' Invocation
|
/minix/external/bsd/bind/dist/contrib/zkt-1.1.3/ |
H A D | configure | 1832 generated by GNU Autoconf 2.69. Invocation command line was 5314 generated by GNU Autoconf 2.69. Invocation command line was
|
/minix/external/bsd/less/dist/ |
H A D | configure | 1791 generated by GNU Autoconf 2.68. Invocation command line was 5977 generated by GNU Autoconf 2.68. Invocation command line was
|
/minix/external/bsd/dhcp/dist/ |
H A D | configure | 2328 generated by GNU Autoconf 2.69. Invocation command line was 7309 generated by GNU Autoconf 2.69. Invocation command line was
|
/minix/external/bsd/libpcap/dist/ |
H A D | configure | 1963 generated by GNU Autoconf 2.69. Invocation command line was 9084 generated by GNU Autoconf 2.69. Invocation command line was
|
/minix/external/bsd/bind/dist/contrib/nslint-3.0a2/ |
H A D | configure | 6229 generated by GNU Autoconf 2.62. Invocation command line was
|
/minix/external/bsd/libevent/dist/ |
H A D | configure | 2245 generated by GNU Autoconf 2.69. Invocation command line was 15776 generated by GNU Autoconf 2.69. Invocation command line was
|