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;
100 MigrationProcess(const CompilerInvocation &CI, DiagnosticConsumer *diagClient,
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 1 //===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
29 /// \return A CompilerInvocation, or 0 if none was built for the given
31 CompilerInvocation *
80 OwningPtr<CompilerInvocation> CI(new CompilerInvocation());
81 if (!CompilerInvocation::CreateFromArgs(*CI,
Android.mk 32 CompilerInvocation.cpp \
ChainedIncludesSource.cpp 77 OwningPtr<CompilerInvocation> CInvok;
78 CInvok.reset(new CompilerInvocation(CI.getInvocation()));
ASTUnit.cpp     [all...]
CompilerInstance.cpp 51 : Invocation(new CompilerInvocation()), ModuleManager(0),
59 void CompilerInstance::setInvocation(CompilerInvocation *Value) {
789 IntrusiveRefCntPtr<CompilerInvocation> Invocation
790 (new CompilerInvocation(ImportingInstance.getInvocation()));
    [all...]
CompilerInvocation.cpp 1 //===--- CompilerInvocation.cpp -------------------------------------------===//
10 #include "clang/Frontend/CompilerInvocation.h"
45 : RefCountedBase<CompilerInvocation>(),
809 std::string CompilerInvocation::GetResourcesPath(const char *Argv0,
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 1 //===-- CompilerInvocation.h - Compiler Invocation Helper Data --*- C++ -*-===//
34 class CompilerInvocation;
51 class CompilerInvocationBase : public RefCountedBase<CompilerInvocation> {
99 class CompilerInvocation : public CompilerInvocationBase {
121 CompilerInvocation() : AnalyzerOpts(new AnalyzerOptions()) {}
133 static bool CreateFromArgs(CompilerInvocation &Res,
Utils.h 29 class CompilerInvocation;
100 /// \return A CompilerInvocation, or 0 if none was built for the given
102 CompilerInvocation *
ASTUnit.h 50 class CompilerInvocation;
94 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
387 ComputePreamble(CompilerInvocation &Invocation,
391 const CompilerInvocation &PreambleInvocationIn,
653 /// \brief Create a ASTUnit. Gets ownership of the passed CompilerInvocation.
654 static ASTUnit *create(CompilerInvocation *CI,
690 /// \brief Create an ASTUnit from a source file, via a CompilerInvocation
694 /// source file. The ASTUnit takes ownership of the CompilerInvocation object.
715 static ASTUnit *LoadFromCompilerInvocationAction(CompilerInvocation *CI,
730 /// 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 22 #include "clang/Frontend/CompilerInvocation.h"
74 Success = CompilerInvocation::CreateFromArgs(Clang->getInvocation(),
81 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"
110 OwningPtr<CompilerInvocation> CI(new CompilerInvocation);
111 CompilerInvocation::CreateFromArgs(*CI,
139 CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 153 static bool HasARCRuntime(CompilerInvocation &origCI) {
174 static CompilerInvocation *
175 createInvocationForMigration(CompilerInvocation &origCI) {
176 OwningPtr<CompilerInvocation> CInvok;
177 CInvok.reset(new CompilerInvocation(origCI));
239 bool arcmt::checkForManualIssues(CompilerInvocation &origCI,
255 OwningPtr<CompilerInvocation> CInvok;
341 static bool applyTransforms(CompilerInvocation &origCI,
353 CompilerInvocation CInvokForCheck(origCI);
358 CompilerInvocation CInvok(origCI)
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 87 static clang::CompilerInvocation *newInvocation(
91 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
92 clang::CompilerInvocation::CreateFromArgs(
181 OwningPtr<clang::CompilerInvocation> Invocation(
189 clang::CompilerInvocation *Invocation) {
  /external/clang/include/clang/Tooling/
Tooling.h 50 class CompilerInvocation;
154 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/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 210 milliseconds