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

1 2 3

  /external/clang/include/clang/FrontendTool/
Utils.h 20 class CompilerInstance;
26 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
  /external/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.h 36 class CompilerInstance;
45 ModelInjector(CompilerInstance &CI);
65 CompilerInstance &CI;
FrontendActions.cpp 17 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
25 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI,
ModelInjector.cpp 14 #include "clang/Frontend/CompilerInstance.h"
28 ModelInjector::ModelInjector(CompilerInstance &CI) : CI(CI) {}
77 // Modules are parsed by a separate CompilerInstance, so this code mimics that
79 CompilerInstance Instance(CI.getPCHContainerOperations());
  /external/clang/include/clang/Frontend/
FrontendAction.h 33 class CompilerInstance;
39 CompilerInstance *Instance;
44 std::unique_ptr<ASTConsumer> CreateWrappedASTConsumer(CompilerInstance &CI,
64 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
73 virtual bool BeginInvocation(CompilerInstance &CI) { return true; }
79 virtual bool BeginSourceFileAction(CompilerInstance &CI,
114 CompilerInstance &getCompilerInstance() const {
119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; }
204 /// CompilerInstance. When processing AST input files, these objects should
205 /// generally not be initialized in the CompilerInstance -- they wil
    [all...]
FrontendActions.h 29 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
44 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
50 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
56 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
62 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
74 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
89 ComputeASTConsumerArguments(CompilerInstance &CI, StringRef InFile,
99 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
114 bool BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) override
    [all...]
PCHContainerOperations.h 30 class CompilerInstance;
50 CompilerInstance &CI, const std::string &MainFileName,
77 CompilerInstance &CI, const std::string &MainFileName,
  /external/clang/include/clang/ARCMigrate/
ARCMTActions.h 22 bool BeginInvocation(CompilerInstance &CI) override;
30 bool BeginInvocation(CompilerInstance &CI) override;
39 bool BeginInvocation(CompilerInstance &CI) override;
40 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
49 bool BeginInvocation(CompilerInstance &CI) override;
62 CompilerInstance *CompInst;
68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
70 bool BeginInvocation(CompilerInstance &CI) override;
  /external/clang/include/clang/StaticAnalyzer/Frontend/
AnalysisConsumer.h 29 class CompilerInstance;
43 CreateAnalysisConsumer(CompilerInstance &CI);
FrontendActions.h 29 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
47 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /external/clang/include/clang/Rewrite/Frontend/
FrontendActions.h 25 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
34 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
37 bool BeginSourceFileAction(CompilerInstance &CI,
57 bool BeginInvocation(CompilerInstance &CI) override;
62 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /external/clang/include/clang/CodeGen/
ObjectFilePCHContainerOperations.h 26 CompilerInstance &CI, const std::string &MainFileName,
CodeGenAction.h 42 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /external/clang/lib/ARCMigrate/
ARCMTActions.cpp 12 #include "clang/Frontend/CompilerInstance.h"
17 bool CheckAction::BeginInvocation(CompilerInstance &CI) {
31 bool ModifyAction::BeginInvocation(CompilerInstance &CI) {
40 bool MigrateAction::BeginInvocation(CompilerInstance &CI) {
  /external/clang/examples/PrintFunctionNames/
PrintFunctionNames.cpp 19 #include "clang/Frontend/CompilerInstance.h"
27 CompilerInstance &Instance;
31 PrintFunctionsConsumer(CompilerInstance &Instance,
82 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
87 bool ParseArgs(const CompilerInstance &CI,
  /external/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 13 #include "clang/Frontend/CompilerInstance.h"
34 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
44 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
88 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI,
108 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) {
153 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
175 CompilerInstance &CI = getCompilerInstance();
183 CompilerInstance &CI = getCompilerInstance();
191 CompilerInstance &CI = getCompilerInstance();
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 17 #include "clang/Frontend/CompilerInstance.h"
38 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
48 CompilerInstance Compiler;
EvaluateAsRValueTest.cpp 61 CreateASTConsumer(clang::CompilerInstance &Compiler,
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 14 #include "clang/Frontend/CompilerInstance.h"
38 bool BeginSourceFileAction(CompilerInstance &ci,
46 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
55 Visitor(CompilerInstance &CI, bool ActOnEndOfTranslationUnit,
73 CompilerInstance &CI;
88 CompilerInstance compiler;
108 CompilerInstance compiler;
135 CompilerInstance compiler;
181 CompilerInstance Compiler;
  /external/clang/lib/Frontend/
CompilerInstance.cpp 1 //===--- CompilerInstance.cpp ---------------------------------------------===//
10 #include "clang/Frontend/CompilerInstance.h"
54 CompilerInstance::CompilerInstance(
62 CompilerInstance::~CompilerInstance() {
66 void CompilerInstance::setInvocation(CompilerInvocation *Value) {
70 bool CompilerInstance::shouldBuildGlobalModuleIndex() const {
77 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) {
81 void CompilerInstance::setTarget(TargetInfo *Value) { Target = Value;
    [all...]
ASTMerge.cpp 14 #include "clang/Frontend/CompilerInstance.h"
20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI,
35 CompilerInstance &CI = getCompilerInstance();
FrontendActions.cpp 15 #include "clang/Frontend/CompilerInstance.h"
38 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
50 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
57 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
64 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
69 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
74 DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
80 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
103 CompilerInstance &CI, StringRef InFile, std::string &Sysroot,
126 GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI
    [all...]
PCHContainerOperations.cpp 51 CompilerInstance &CI, const std::string &MainFileName,
  /external/clang/tools/driver/
cc1_main.cpp 20 #include "clang/Frontend/CompilerInstance.h"
68 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance());
  /external/clang/unittests/CodeGen/
BufferSourceTest.cpp 15 #include "clang/Frontend/CompilerInstance.h"
42 CompilerInstance compiler;

Completed in 1116 milliseconds

1 2 3