HomeSort by: relevance | last modified time | path
    Searched refs:CompilerInvocation (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/ARCMigrate/
ARCMT.h 14 #include "clang/Frontend/CompilerInvocation.h"
24 /// Creates an AST with the provided CompilerInvocation but with these
41 checkForManualIssues(CompilerInvocation &CI, const FrontendInputFile &Input,
52 applyTransformations(CompilerInvocation &origCI,
69 CompilerInvocation &origCI, const FrontendInputFile &Input,
97 CompilerInvocation OrigCI;
105 MigrationProcess(const CompilerInvocation &CI,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 1 //===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
27 std::unique_ptr<CompilerInvocation> clang::createInvocationFromCommandLine(
95 auto CI = std::make_unique<CompilerInvocation>();
96 if (!CompilerInvocation::CreateFromArgs(*CI, CCArgs, *Diags, Args[0]) &&
CompilerInvocation.cpp 1 //===- CompilerInvocation.cpp ---------------------------------------------===//
9 #include "clang/Frontend/CompilerInvocation.h"
178 CompilerInvocation::StringAllocator,
219 CompilerInvocation::StringAllocator, Option::OptionClass,
228 CompilerInvocation::StringAllocator SA,
251 CompilerInvocation::StringAllocator SA,
296 CompilerInvocation::StringAllocator SA,
313 CompilerInvocation::StringAllocator SA,
353 CompilerInvocation::StringAllocator SA,
442 static bool FixupInvocation(CompilerInvocation &Invocation
    [all...]
ChainedIncludesSource.cpp 127 std::unique_ptr<CompilerInvocation> CInvok;
128 CInvok.reset(new CompilerInvocation(CI.getInvocation()));
PrecompiledPreamble.cpp 19 #include "clang/Frontend/CompilerInvocation.h"
312 const CompilerInvocation &Invocation,
320 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
495 bool PrecompiledPreamble::CanReuse(const CompilerInvocation &Invocation,
504 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
607 CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
614 CompilerInvocation &CI, IntrusiveRefCntPtr<llvm::vfs::FileSystem> &VFS,
792 PreambleBounds Bounds, CompilerInvocation &CI,
  /src/external/mit/isl/dist/interface/
extract_interface.cc 68 #include <clang/Frontend/CompilerInvocation.h>
221 /* Call CompilerInvocation::CreateFromArgs with the right arguments.
224 static void create_from_args(CompilerInvocation &invocation,
227 CompilerInvocation::CreateFromArgs(invocation, *args, Diags);
232 /* Call CompilerInvocation::CreateFromArgs with the right arguments.
235 static void create_from_args(CompilerInvocation &invocation,
238 CompilerInvocation::CreateFromArgs(invocation, args->data() + 1,
265 /* Create a CompilerInvocation object that stores the command line
270 static CompilerInvocation *construct_invocation(const char *filename,
289 CompilerInvocation *invocation = new CompilerInvocation
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
PrecompiledPreamble.h 37 class CompilerInvocation;
60 /// \param Invocation Original CompilerInvocation with options to compile the
82 Build(const CompilerInvocation &Invocation,
107 bool CanReuse(const CompilerInvocation &Invocation,
119 void AddImplicitPreamble(CompilerInvocation &CI,
126 void OverridePreamble(CompilerInvocation &CI,
235 void configurePreamble(PreambleBounds Bounds, CompilerInvocation &CI,
CompilerInvocation.h 1 //===- CompilerInvocation.h - Compiler Invocation Helper Data ---*- C++ -*-===//
64 /// The base class of CompilerInvocation with reference semantics.
68 /// CompilerInvocation gets destroyed, without making a copy.
71 /// assignment here and leave them defaulted in the rest of CompilerInvocation.
130 /// The base class of CompilerInvocation with value semantics.
188 class CompilerInvocation : public CompilerInvocationRefBase,
202 static bool CreateFromArgs(CompilerInvocation &Res,
247 static bool CreateFromArgsImpl(CompilerInvocation &Res,
284 createVFSFromCompilerInvocation(const CompilerInvocation &CI,
288 const CompilerInvocation &CI, DiagnosticsEngine &Diags
    [all...]
Utils.h 45 class CompilerInvocation;
212 /// non-null (and possibly incorrect) CompilerInvocation if any errors were
218 /// \return A CompilerInvocation, or nullptr if none was built for the given
220 std::unique_ptr<CompilerInvocation> createInvocationFromCommandLine(
ASTUnit.h 67 class CompilerInvocation;
139 std::shared_ptr<CompilerInvocation> Invocation;
376 CompilerInvocation &PreambleInvocationIn,
664 /// Create a ASTUnit. Gets ownership of the passed CompilerInvocation.
666 create(std::shared_ptr<CompilerInvocation> CI,
722 /// Create an ASTUnit from a source file, via a CompilerInvocation
726 /// source file. The ASTUnit takes ownership of the CompilerInvocation object.
751 std::shared_ptr<CompilerInvocation> CI,
764 /// CompilerInvocation object.
767 /// source file. The ASTUnit takes ownership of the CompilerInvocation object
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ARCMT.cpp 149 static bool HasARCRuntime(CompilerInvocation &origCI) {
173 static CompilerInvocation *
174 createInvocationForMigration(CompilerInvocation &origCI,
176 std::unique_ptr<CompilerInvocation> CInvok;
177 CInvok.reset(new CompilerInvocation(origCI));
238 CompilerInvocation &origCI, const FrontendInputFile &Input,
253 std::unique_ptr<CompilerInvocation> CInvok;
339 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input,
349 CompilerInvocation CInvokForCheck(origCI);
355 CompilerInvocation CInvok(origCI)
    [all...]
  /src/external/apache2/llvm/dist/clang/examples/clang-interpreter/
main.cpp 15 #include "clang/Frontend/CompilerInvocation.h"
182 std::unique_ptr<CompilerInvocation> CI(new CompilerInvocation);
183 CompilerInvocation::CreateFromArgs(*CI, CCArgs, Diags);
207 CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
  /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-cxx/
handle_cxx.cpp 39 std::unique_ptr<clang::CompilerInvocation> Invocation(
  /src/external/apache2/llvm/lib/libclangFrontend/
Makefile 15 CompilerInvocation.cpp \
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
Tooling.h 54 class CompilerInvocation;
69 /// Interface to process a clang::CompilerInvocation.
79 runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
96 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
276 std::shared_ptr<CompilerInvocation> Invocation,
495 /// Creates a \c CompilerInvocation.
496 CompilerInvocation *newInvocation(DiagnosticsEngine *Diagnostics,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
ModuleDepCollector.cpp 21 static CompilerInvocation
23 const CompilerInvocation &Invocation) {
25 CompilerInvocation CI(Invocation);
41 serializeCompilerInvocation(const CompilerInvocation &CI) {
47 // Synthesize full command line from the CompilerInvocation, including "-cc1".
58 CompilerInvocation CI(Invocation);
DependencyScanningWorker.cpp 11 #include "clang/Frontend/CompilerInvocation.h"
60 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation,
77 const CompilerInvocation &CI = Compiler.getInvocation();
  /src/external/apache2/llvm/dist/clang/tools/arcmt-test/
arcmt-test.cpp 123 CompilerInvocation CI;
124 if (!CompilerInvocation::CreateFromArgs(CI, Args, *Diags))
161 CompilerInvocation origCI;
162 if (!CompilerInvocation::CreateFromArgs(origCI, Args, *TopDiags))
348 resourcesPath = CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
Tooling.cpp 29 #include "clang/Frontend/CompilerInvocation.h"
144 CompilerInvocation *newInvocation(DiagnosticsEngine *Diagnostics,
148 CompilerInvocation *Invocation = new CompilerInvocation;
149 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, *Diagnostics,
358 std::unique_ptr<CompilerInvocation> Invocation(
366 std::shared_ptr<CompilerInvocation> Invocation,
380 std::shared_ptr<CompilerInvocation> Invocation, FileManager *Files,
448 ("-resource-dir=" + CompilerInvocation::GetResourcesPath(Argv0, MainAddr))
580 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ClangSrcLocDump.cpp 138 auto Invocation = std::make_unique<CompilerInvocation>();
139 CompilerInvocation::CreateFromArgs(*Invocation, CC1Args, Diagnostics);
  /src/external/apache2/llvm/dist/clang/tools/driver/
cc1_main.cpp 22 #include "clang/Frontend/CompilerInvocation.h"
212 bool Success = CompilerInvocation::CreateFromArgs(Clang->getInvocation(),
227 CompilerInvocation::GetResourcesPath(Argv0, MainAddr);
  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
Interpreter.cpp 79 bool Success = CompilerInvocation::CreateFromArgs(
87 CompilerInvocation::GetResourcesPath(Argv[0], nullptr);
146 CompilerInvocation Invocation;
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
DiagnosticOptions.h 74 friend class CompilerInvocation;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 67 auto Invocation = std::make_shared<CompilerInvocation>(CI.getInvocation());
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
ShowEnabledWarnings.cpp 65 // Try to build a CompilerInvocation.
69 std::unique_ptr<CompilerInvocation> Invocation =

Completed in 62 milliseconds

1 2