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

  /external/clang/include/clang/ARCMigrate/
ARCMT.h 15 #include "clang/Frontend/CompilerInvocation.h"
25 /// \brief Creates an AST with the provided CompilerInvocation but with these
42 checkForManualIssues(CompilerInvocation &CI, const FrontendInputFile &Input,
53 applyTransformations(CompilerInvocation &origCI,
70 CompilerInvocation &origCI, const FrontendInputFile &Input,
98 CompilerInvocation OrigCI;
106 MigrationProcess(const CompilerInvocation &CI,
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 1 //===-- CompilerInvocation.h - Compiler Invocation Helper Data --*- C++ -*-===//
39 class CompilerInvocation;
53 class CompilerInvocationBase : public RefCountedBase<CompilerInvocation> {
103 class CompilerInvocation : public CompilerInvocationBase {
125 CompilerInvocation() : AnalyzerOpts(new AnalyzerOptions()) {}
137 static bool CreateFromArgs(CompilerInvocation &Res,
218 createVFSFromCompilerInvocation(const CompilerInvocation &CI,
Utils.h 38 class CompilerInvocation;
185 /// \return A CompilerInvocation, or 0 if none was built for the given
187 CompilerInvocation *
ASTUnit.h 51 class CompilerInvocation;
116 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
444 ComputedPreamble ComputePreamble(CompilerInvocation &Invocation,
449 const CompilerInvocation &PreambleInvocationIn, bool AllowRebuild = true,
712 /// \brief Create a ASTUnit. Gets ownership of the passed CompilerInvocation.
713 static ASTUnit *create(CompilerInvocation *CI,
752 /// \brief Create an ASTUnit from a source file, via a CompilerInvocation
756 /// source file. The ASTUnit takes ownership of the CompilerInvocation object.
781 CompilerInvocation *CI,
794 /// CompilerInvocation object
    [all...]
CompilerInstance.h 17 #include "clang/Frontend/CompilerInvocation.h"
73 IntrusiveRefCntPtr<CompilerInvocation> Invocation;
190 /// CompilerInvocation object.
227 CompilerInvocation &getInvocation() {
233 void setInvocation(CompilerInvocation *Value);
  /external/clang/unittests/Frontend/
CodeGenActionTest.cpp 43 CompilerInvocation *Invocation = new CompilerInvocation;
FrontendActionTest.cpp 15 #include "clang/Frontend/CompilerInvocation.h"
80 CompilerInvocation *invocation = new CompilerInvocation;
100 CompilerInvocation *invocation = new CompilerInvocation;
120 CompilerInvocation *invocation = new CompilerInvocation;
173 CompilerInvocation *Invocation = new CompilerInvocation;
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 1 //===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
31 /// \return A CompilerInvocation, or 0 if none was built for the given
33 CompilerInvocation *
96 std::unique_ptr<CompilerInvocation> CI(new CompilerInvocation());
97 if (!CompilerInvocation::CreateFromArgs(*CI,
ChainedIncludesSource.cpp 129 std::unique_ptr<CompilerInvocation> CInvok;
130 CInvok.reset(new CompilerInvocation(CI.getInvocation()));
ASTUnit.cpp     [all...]
CompilerInstance.cpp 58 : ModuleLoader(BuildingModule), Invocation(new CompilerInvocation()),
68 void CompilerInstance::setInvocation(CompilerInvocation *Value) {
234 // TODO: choose the virtual file system based on the CompilerInvocation.
    [all...]
CompilerInvocation.cpp 1 //===--- CompilerInvocation.cpp -------------------------------------------===//
18 #include "clang/Frontend/CompilerInvocation.h"
62 : RefCountedBase<CompilerInvocation>(),
    [all...]
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 18 #include "clang/Frontend/CompilerInvocation.h"
51 CompilerInvocation *Invocation = new CompilerInvocation;
55 CompilerInvocation::CreateFromArgs(*Invocation, Args,
  /external/clang/examples/clang-interpreter/
main.cpp 16 #include "clang/Frontend/CompilerInvocation.h"
130 std::unique_ptr<CompilerInvocation> CI(new CompilerInvocation);
131 CompilerInvocation::CreateFromArgs(*CI,
159 CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
  /external/clang/tools/driver/
cc1_main.cpp 21 #include "clang/Frontend/CompilerInvocation.h"
92 bool Success = CompilerInvocation::CreateFromArgs(
99 CompilerInvocation::GetResourcesPath(Argv0, MainAddr);
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 148 static bool HasARCRuntime(CompilerInvocation &origCI) {
172 static CompilerInvocation *
173 createInvocationForMigration(CompilerInvocation &origCI,
175 std::unique_ptr<CompilerInvocation> CInvok;
176 CInvok.reset(new CompilerInvocation(origCI));
239 CompilerInvocation &origCI, const FrontendInputFile &Input,
254 std::unique_ptr<CompilerInvocation> CInvok;
340 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input,
350 CompilerInvocation CInvokForCheck(origCI);
356 CompilerInvocation CInvok(origCI)
    [all...]
  /external/clang/include/clang/Tooling/
Tooling.h 56 class CompilerInvocation;
62 /// \brief Interface to process a clang::CompilerInvocation.
72 runInvocation(clang::CompilerInvocation *Invocation, FileManager *Files,
88 bool runInvocation(clang::CompilerInvocation *Invocation, FileManager *Files,
264 clang::CompilerInvocation *Invocation,
452 /// \brief Creates a \c CompilerInvocation.
453 clang::CompilerInvocation *newInvocation(
  /external/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 66 IntrusiveRefCntPtr<CompilerInvocation> Invocation(
67 new CompilerInvocation(CI.getInvocation()));
  /external/clang/tools/clang-fuzzer/
ClangFuzzer.cpp 35 std::unique_ptr<clang::CompilerInvocation> Invocation(
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 122 CompilerInvocation CI;
123 if (!CompilerInvocation::CreateFromArgs(CI, Args.begin(), Args.end(), *Diags))
161 CompilerInvocation origCI;
162 if (!CompilerInvocation::CreateFromArgs(origCI, Args.begin(), Args.end(),
347 resourcesPath = CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
  /external/clang/lib/Tooling/
Tooling.cpp 90 clang::CompilerInvocation *newInvocation(
94 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
95 clang::CompilerInvocation::CreateFromArgs(
260 std::unique_ptr<clang::CompilerInvocation> Invocation(
276 clang::CompilerInvocation *Invocation,
290 CompilerInvocation *Invocation, FileManager *Files,
357 CompilerInvocation::GetResourcesPath(Argv0, MainAddr));
469 bool runInvocation(CompilerInvocation *Invocation, FileManager *Files,
  /bionic/tools/versioner/src/
Driver.cpp 36 #include <clang/Frontend/CompilerInvocation.h>
233 auto invocation = std::make_unique<CompilerInvocation>();
234 if (!CompilerInvocation::CreateFromArgs(*invocation.get(), &cc1_flags.front(),
236 errx(1, "failed to create CompilerInvocation");
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 66 // Try to build a CompilerInvocation.
70 std::unique_ptr<CompilerInvocation> Invocation(
  /external/clang/tools/c-index-test/
core_main.cpp 12 #include "clang/Frontend/CompilerInvocation.h"
144 IntrusiveRefCntPtr<CompilerInvocation>
  /external/clang/tools/libclang/
Indexing.cpp 21 #include "clang/Frontend/CompilerInvocation.h"
480 IntrusiveRefCntPtr<CompilerInvocation>
487 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInvocation,
488 llvm::CrashRecoveryContextReleaseRefCleanup<CompilerInvocation> >
    [all...]

Completed in 773 milliseconds