Home
last modified time | relevance | path

Searched refs:CompilerInvocation (Results 1 – 24 of 24) sorted by relevance

/external/clang/include/clang/Frontend/
DCompilerInvocation.h39 class CompilerInvocation; variable
52 class CompilerInvocationBase : public RefCountedBase<CompilerInvocation> {
102 class CompilerInvocation : public CompilerInvocationBase {
124 CompilerInvocation() : AnalyzerOpts(new AnalyzerOptions()) {} in CompilerInvocation() function
136 static bool CreateFromArgs(CompilerInvocation &Res,
214 createVFSFromCompilerInvocation(const CompilerInvocation &CI,
DASTUnit.h51 class CompilerInvocation; variable
114 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
429 ComputePreamble(CompilerInvocation &Invocation,
433 const CompilerInvocation &PreambleInvocationIn,
698 static ASTUnit *create(CompilerInvocation *CI,
759 CompilerInvocation *CI, IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
780 CompilerInvocation *CI, IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
DUtils.h37 class CompilerInvocation; variable
177 CompilerInvocation *
DCompilerInstance.h70 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
203 CompilerInvocation &getInvocation() { in getInvocation()
209 void setInvocation(CompilerInvocation *Value);
/external/clang/include/clang/ARCMigrate/
DARCMT.h40 bool checkForManualIssues(CompilerInvocation &CI,
50 bool applyTransformations(CompilerInvocation &origCI,
65 bool migrateWithTemporaryFiles(CompilerInvocation &origCI,
95 CompilerInvocation OrigCI;
102 MigrationProcess(const CompilerInvocation &CI, DiagnosticConsumer *diagClient,
/external/clang/lib/Frontend/
DCreateInvocationFromCommandLine.cpp32 CompilerInvocation *
81 std::unique_ptr<CompilerInvocation> CI(new CompilerInvocation()); in createInvocationFromCommandLine()
82 if (!CompilerInvocation::CreateFromArgs(*CI, in createInvocationFromCommandLine()
DCMakeLists.txt14 CompilerInvocation.cpp
DAndroid.mk33 CompilerInvocation.cpp \
DASTUnit.cpp1050 IntrusiveRefCntPtr<CompilerInvocation> in Parse()
1051 CCInvocation(new CompilerInvocation(*Invocation)); in Parse()
1198 ASTUnit::ComputePreamble(CompilerInvocation &Invocation, in ComputePreamble()
1362 const CompilerInvocation &PreambleInvocationIn, in getMainBufferWithPrecompiledPreamble()
1366 IntrusiveRefCntPtr<CompilerInvocation> in getMainBufferWithPrecompiledPreamble()
1367 PreambleInvocation(new CompilerInvocation(PreambleInvocationIn)); in getMainBufferWithPrecompiledPreamble()
1732 ASTUnit *ASTUnit::create(CompilerInvocation *CI, in create()
1755 CompilerInvocation *CI, IntrusiveRefCntPtr<DiagnosticsEngine> Diags, in LoadFromCompilerInvocationAction()
1919 CompilerInvocation *CI, IntrusiveRefCntPtr<DiagnosticsEngine> Diags, in LoadFromCompilerInvocation()
1972 IntrusiveRefCntPtr<CompilerInvocation> CI; in LoadFromCommandLine()
[all …]
DChainedIncludesSource.cpp126 std::unique_ptr<CompilerInvocation> CInvok; in createChainedIncludesSource()
127 CInvok.reset(new CompilerInvocation(CI.getInvocation())); in createChainedIncludesSource()
DCompilerInvocation.cpp54 : RefCountedBase<CompilerInvocation>(), in CompilerInvocationBase()
954 std::string CompilerInvocation::GetResourcesPath(const char *Argv0, in GetResourcesPath()
1092 void CompilerInvocation::setLangDefaults(LangOptions &Opts, InputKind IK, in setLangDefaults()
1332 CompilerInvocation::setLangDefaults(Opts, IK, LangStd); in ParseLangArgs()
1787 bool CompilerInvocation::CreateFromArgs(CompilerInvocation &Res, in CreateFromArgs()
1897 std::string CompilerInvocation::getModuleHash() const { in getModuleHash()
2027 createVFSFromCompilerInvocation(const CompilerInvocation &CI, in createVFSFromCompilerInvocation()
DCompilerInstance.cpp56 Invocation(new CompilerInvocation()), ModuleManager(nullptr), in CompilerInstance()
65 void CompilerInstance::setInvocation(CompilerInvocation *Value) { in setInvocation()
864 IntrusiveRefCntPtr<CompilerInvocation> Invocation in compileModuleImpl()
865 (new CompilerInvocation(ImportingInstance.getInvocation())); in compileModuleImpl()
/external/clang/unittests/Frontend/
DFrontendActionTest.cpp66 CompilerInvocation *invocation = new CompilerInvocation; in TEST()
85 CompilerInvocation *invocation = new CompilerInvocation; in TEST()
/external/clang/lib/ARCMigrate/
DARCMT.cpp147 static bool HasARCRuntime(CompilerInvocation &origCI) { in HasARCRuntime()
168 static CompilerInvocation *
169 createInvocationForMigration(CompilerInvocation &origCI) { in createInvocationForMigration()
170 std::unique_ptr<CompilerInvocation> CInvok; in createInvocationForMigration()
171 CInvok.reset(new CompilerInvocation(origCI)); in createInvocationForMigration()
233 bool arcmt::checkForManualIssues(CompilerInvocation &origCI, in checkForManualIssues()
249 std::unique_ptr<CompilerInvocation> CInvok; in checkForManualIssues()
333 static bool applyTransforms(CompilerInvocation &origCI, in applyTransforms()
345 CompilerInvocation CInvokForCheck(origCI); in applyTransforms()
350 CompilerInvocation CInvok(origCI); in applyTransforms()
[all …]
/external/clang/unittests/AST/
DExternalASTSourceTest.cpp51 CompilerInvocation *Invocation = new CompilerInvocation; in testExternalASTSource()
55 CompilerInvocation::CreateFromArgs(*Invocation, Args, in testExternalASTSource()
/external/clang/examples/clang-interpreter/
Dmain.cpp112 std::unique_ptr<CompilerInvocation> CI(new CompilerInvocation); in main()
113 CompilerInvocation::CreateFromArgs(*CI, in main()
141 CompilerInvocation::GetResourcesPath(argv[0], MainAddr); in main()
/external/clang/lib/Tooling/
DTooling.cpp93 static clang::CompilerInvocation *newInvocation( in newInvocation()
97 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation; in newInvocation()
98 clang::CompilerInvocation::CreateFromArgs( in newInvocation()
222 std::unique_ptr<clang::CompilerInvocation> Invocation( in run()
235 clang::CompilerInvocation *Invocation) { in runInvocation()
246 bool FrontendActionFactory::runInvocation(CompilerInvocation *Invocation, in runInvocation()
377 bool runInvocation(CompilerInvocation *Invocation, FileManager *Files, in runInvocation()
/external/clang/include/clang/Tooling/
DTooling.h52 class CompilerInvocation; variable
67 virtual bool runInvocation(clang::CompilerInvocation *Invocation,
83 bool runInvocation(clang::CompilerInvocation *Invocation, FileManager *Files,
223 clang::CompilerInvocation *Invocation);
/external/clang/tools/arcmt-test/
Darcmt-test.cpp121 CompilerInvocation CI; in checkForMigration()
122 if (!CompilerInvocation::CreateFromArgs(CI, Args.begin(), Args.end(), *Diags)) in checkForMigration()
159 CompilerInvocation origCI; in performTransformations()
160 if (!CompilerInvocation::CreateFromArgs(origCI, Args.begin(), Args.end(), in performTransformations()
347 resourcesPath = CompilerInvocation::GetResourcesPath(argv[0], MainAddr); in main()
/external/clang/tools/driver/
Dcc1_main.cpp88 Success = CompilerInvocation::CreateFromArgs(Clang->getInvocation(), in cc1_main()
95 CompilerInvocation::GetResourcesPath(Argv0, MainAddr); in cc1_main()
/external/clang/tools/diagtool/
DShowEnabledWarnings.cpp67 std::unique_ptr<CompilerInvocation> Invocation( in createDiagnostics()
/external/clang/tools/libclang/
DIndexing.cpp557 IntrusiveRefCntPtr<CompilerInvocation> in clang_indexSourceFile_Impl()
564 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInvocation, in clang_indexSourceFile_Impl()
565 llvm::CrashRecoveryContextReleaseRefCleanup<CompilerInvocation> > in clang_indexSourceFile_Impl()
/external/clang/include/clang/Driver/
DCC1Options.td285 // CompilerInvocation out of a driver-derived argument vector.
/external/clang/patches/
D0004-Add-Android-build-system.patch1061 + CompilerInvocation.cpp \