HomeSort by relevance Sort by last modified time
    Searched refs:CompilerInvocation (Results 1 - 20 of 20) sorted by null

  /external/clang/include/clang/ARCMigrate/
ARCMT.h 15 #include "clang/Frontend/CompilerInvocation.h"
24 /// \brief Creates an AST with the provided CompilerInvocation but with these
40 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/
CreateInvocationFromCommandLine.cpp 1 //===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
30 /// \return A CompilerInvocation, or 0 if none was built for the given
32 CompilerInvocation *
81 OwningPtr<CompilerInvocation> CI(new CompilerInvocation());
82 if (!CompilerInvocation::CreateFromArgs(*CI,
Android.mk 32 CompilerInvocation.cpp \
ChainedIncludesSource.cpp 78 OwningPtr<CompilerInvocation> CInvok;
79 CInvok.reset(new CompilerInvocation(CI.getInvocation()));
ASTUnit.cpp     [all...]
CompilerInstance.cpp 53 : Invocation(new CompilerInvocation()), ModuleManager(0),
61 void CompilerInstance::setInvocation(CompilerInvocation *Value) {
808 IntrusiveRefCntPtr<CompilerInvocation> Invocation
809 (new CompilerInvocation(ImportingInstance.getInvocation()));
    [all...]
CompilerInvocation.cpp 1 //===--- CompilerInvocation.cpp -------------------------------------------===//
10 #include "clang/Frontend/CompilerInvocation.h"
50 : RefCountedBase<CompilerInvocation>(),
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 1 //===-- CompilerInvocation.h - Compiler Invocation Helper Data --*- C++ -*-===//
39 class CompilerInvocation;
52 class CompilerInvocationBase : public RefCountedBase<CompilerInvocation> {
100 class CompilerInvocation : public CompilerInvocationBase {
122 CompilerInvocation() : AnalyzerOpts(new AnalyzerOptions()) {}
134 static bool CreateFromArgs(CompilerInvocation &Res,
Utils.h 34 class CompilerInvocation;
105 /// \return A CompilerInvocation, or 0 if none was built for the given
107 CompilerInvocation *
ASTUnit.h 50 class CompilerInvocation;
95 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
388 ComputePreamble(CompilerInvocation &Invocation,
392 const CompilerInvocation &PreambleInvocationIn,
655 /// \brief Create a ASTUnit. Gets ownership of the passed CompilerInvocation.
656 static ASTUnit *create(CompilerInvocation *CI,
692 /// \brief Create an ASTUnit from a source file, via a CompilerInvocation
696 /// source file. The ASTUnit takes ownership of the CompilerInvocation object.
717 static ASTUnit *LoadFromCompilerInvocationAction(CompilerInvocation *CI,
732 /// CompilerInvocation object
    [all...]
CompilerInstance.h 15 #include "clang/Frontend/CompilerInvocation.h"
69 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
151 /// CompilerInvocation object.
188 CompilerInvocation &getInvocation() {
194 void setInvocation(CompilerInvocation *Value);
  /external/clang/tools/driver/
cc1_main.cpp 20 #include "clang/Frontend/CompilerInvocation.h"
76 Success = CompilerInvocation::CreateFromArgs(Clang->getInvocation(),
83 CompilerInvocation::GetResourcesPath(Argv0, MainAddr);
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 15 #include "clang/Frontend/CompilerInvocation.h"
54 CompilerInvocation *invocation = new CompilerInvocation;
  /external/clang/examples/clang-interpreter/
main.cpp 16 #include "clang/Frontend/CompilerInvocation.h"
111 OwningPtr<CompilerInvocation> CI(new CompilerInvocation);
112 CompilerInvocation::CreateFromArgs(*CI,
140 CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 147 static bool HasARCRuntime(CompilerInvocation &origCI) {
168 static CompilerInvocation *
169 createInvocationForMigration(CompilerInvocation &origCI) {
170 OwningPtr<CompilerInvocation> CInvok;
171 CInvok.reset(new CompilerInvocation(origCI));
233 bool arcmt::checkForManualIssues(CompilerInvocation &origCI,
249 OwningPtr<CompilerInvocation> CInvok;
342 static bool applyTransforms(CompilerInvocation &origCI,
354 CompilerInvocation CInvokForCheck(origCI);
359 CompilerInvocation CInvok(origCI)
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 88 static clang::CompilerInvocation *newInvocation(
92 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
93 clang::CompilerInvocation::CreateFromArgs(
183 OwningPtr<clang::CompilerInvocation> Invocation(
191 clang::CompilerInvocation *Invocation) {
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 121 CompilerInvocation CI;
122 if (!CompilerInvocation::CreateFromArgs(CI, Args.begin(), Args.end(), *Diags))
161 CompilerInvocation origCI;
162 if (!CompilerInvocation::CreateFromArgs(origCI, Args.begin(), Args.end(),
350 resourcesPath = CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
  /external/clang/include/clang/Tooling/
Tooling.h 50 class CompilerInvocation;
164 clang::CompilerInvocation *Invocation);
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 65 // Try to build a CompilerInvocation.
66 OwningPtr<CompilerInvocation> Invocation(
  /external/clang/tools/libclang/
Indexing.cpp 22 #include "clang/Frontend/CompilerInvocation.h"
574 IntrusiveRefCntPtr<CompilerInvocation>
581 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInvocation,
582 llvm::CrashRecoveryContextReleaseRefCleanup<CompilerInvocation> >
    [all...]

Completed in 635 milliseconds