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

1 2 3

  /external/clang/include/clang/FrontendTool/
Utils.h 20 class CompilerInstance;
26 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
  /external/clang/include/clang/Frontend/
FrontendAction.h 33 class CompilerInstance;
39 CompilerInstance *Instance;
44 ASTConsumer* CreateWrappedASTConsumer(CompilerInstance &CI,
64 virtual 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; }
195 /// CompilerInstance. When processing AST input files, these objects should
196 /// generally not be initialized in the CompilerInstance -- they wil
    [all...]
FrontendActions.h 29 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
44 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
50 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
56 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
62 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
68 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
74 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
88 static bool ComputeASTConsumerArguments(CompilerInstance &CI,
101 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
116 bool BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) override
    [all...]
CompilerInstance.h 1 //===-- CompilerInstance.h - Clang Compiler Instance ------------*- C++ -*-===//
50 /// CompilerInstance - Helper class for managing a single instance of the Clang
53 /// The CompilerInstance serves two purposes:
62 /// object and retaking ownership prior to destroying the CompilerInstance.
66 /// come in two forms; a short form that reuses the CompilerInstance objects,
68 class CompilerInstance : public ModuleLoader {
156 CompilerInstance(const CompilerInstance &) LLVM_DELETED_FUNCTION;
157 void operator=(const CompilerInstance &) LLVM_DELETED_FUNCTION;
159 explicit CompilerInstance(bool BuildingModule = false)
    [all...]
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsAction.h 21 clang::CompilerInstance& instance,
23 virtual bool ParseArgs(const clang::CompilerInstance& instance,
FindBadConstructsAction.cpp 19 CompilerInstance& instance,
24 bool FindBadConstructsAction::ParseArgs(const CompilerInstance& instance,
ChromeClassTester.h 13 #include "clang/Frontend/CompilerInstance.h"
19 explicit ChromeClassTester(clang::CompilerInstance& instance);
27 clang::CompilerInstance& instance() { return instance_; }
74 clang::CompilerInstance& instance_;
FindBadConstructsConsumer.h 35 FindBadConstructsConsumer(clang::CompilerInstance& instance,
  /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 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
49 bool BeginInvocation(CompilerInstance &CI) override;
62 CompilerInstance *CompInst;
68 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
70 bool BeginInvocation(CompilerInstance &CI) override;
  /external/clang/include/clang/Rewrite/Frontend/
FrontendActions.h 25 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
34 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
37 bool BeginSourceFileAction(CompilerInstance &CI,
57 bool BeginInvocation(CompilerInstance &CI) override;
62 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
  /external/clang/include/clang/StaticAnalyzer/Frontend/
FrontendActions.h 25 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
  /external/clang/lib/StaticAnalyzer/Frontend/
FrontendActions.cpp 11 #include "clang/Frontend/CompilerInstance.h"
16 ASTConsumer *AnalysisAction::CreateASTConsumer(CompilerInstance &CI,
  /external/clang/lib/ARCMigrate/
ARCMTActions.cpp 12 #include "clang/Frontend/CompilerInstance.h"
17 bool CheckAction::BeginInvocation(CompilerInstance &CI) {
30 bool ModifyAction::BeginInvocation(CompilerInstance &CI) {
38 bool MigrateAction::BeginInvocation(CompilerInstance &CI) {
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 14 #include "clang/Frontend/CompilerInstance.h"
34 virtual bool BeginSourceFileAction(CompilerInstance &ci, StringRef filename) {
41 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
73 CompilerInstance compiler;
92 CompilerInstance compiler;
  /external/clang/lib/Frontend/
ASTMerge.cpp 14 #include "clang/Frontend/CompilerInstance.h"
19 ASTConsumer *ASTMergeAction::CreateASTConsumer(CompilerInstance &CI,
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI,
35 CompilerInstance &CI = getCompilerInstance();
FrontendActions.cpp 15 #include "clang/Frontend/CompilerInstance.h"
36 ASTConsumer *InitOnlyAction::CreateASTConsumer(CompilerInstance &CI,
48 ASTConsumer *ASTPrintAction::CreateASTConsumer(CompilerInstance &CI,
55 ASTConsumer *ASTDumpAction::CreateASTConsumer(CompilerInstance &CI,
61 ASTConsumer *ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI,
66 ASTConsumer *ASTViewAction::CreateASTConsumer(CompilerInstance &CI,
71 ASTConsumer *DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
76 ASTConsumer *GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI,
90 bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI,
114 ASTConsumer *GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI
    [all...]
CompilerInstance.cpp 1 //===--- CompilerInstance.cpp ---------------------------------------------===//
10 #include "clang/Frontend/CompilerInstance.h"
54 CompilerInstance::CompilerInstance(bool BuildingModule)
61 CompilerInstance::~CompilerInstance() {
65 void CompilerInstance::setInvocation(CompilerInvocation *Value) {
69 bool CompilerInstance::shouldBuildGlobalModuleIndex() const {
76 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) {
80 void CompilerInstance::setTarget(TargetInfo *Value)
    [all...]
FrontendAction.cpp 15 #include "clang/Frontend/CompilerInstance.h"
135 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
168 bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
202 // file, otherwise the CompilerInstance will happily destroy them.
407 CompilerInstance &CI = getCompilerInstance();
428 CompilerInstance &CI = getCompilerInstance();
493 CompilerInstance &CI = getCompilerInstance();
518 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI,
523 ASTConsumer *WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI,
527 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI)
    [all...]
  /external/clang/examples/PrintFunctionNames/
PrintFunctionNames.cpp 18 #include "clang/Frontend/CompilerInstance.h"
39 ASTConsumer *CreateASTConsumer(CompilerInstance &CI, llvm::StringRef) {
43 bool ParseArgs(const CompilerInstance &CI,
  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 13 #include "clang/Frontend/CompilerInstance.h"
33 ASTConsumer *HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI,
43 ASTConsumer *FixItAction::CreateASTConsumer(CompilerInstance &CI,
87 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI,
107 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) {
153 ASTConsumer *RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI,
170 CompilerInstance &CI = getCompilerInstance();
178 CompilerInstance &CI = getCompilerInstance();
186 CompilerInstance &CI = getCompilerInstance();
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 17 #include "clang/Frontend/CompilerInstance.h"
38 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
48 CompilerInstance Compiler;
EvaluateAsRValueTest.cpp 62 clang::ASTConsumer *CreateASTConsumer(clang::CompilerInstance &Compiler,
  /external/clang/tools/driver/
cc1_main.cpp 19 #include "clang/Frontend/CompilerInstance.h"
68 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance());
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 40 ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
  /external/lldb/include/lldb/Core/
ClangForward.h 38 class CompilerInstance;

Completed in 276 milliseconds

1 2 3