| /minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/ |
| H A D | FrontendAction.h | 33 class CompilerInstance; variable 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; } in BeginInvocation() 79 virtual bool BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction() 114 CompilerInstance &getCompilerInstance() const { in getCompilerInstance() 119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; } in setCompilerInstance() 211 bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input); 241 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, [all …]
|
| H A D | 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, 88 static bool ComputeASTConsumerArguments(CompilerInstance &CI, 101 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 116 bool BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) override; [all …]
|
| H A D | CompilerInstance.h | 69 class CompilerInstance : public ModuleLoader { 160 CompilerInstance(const CompilerInstance &) LLVM_DELETED_FUNCTION; 161 void operator=(const CompilerInstance &) LLVM_DELETED_FUNCTION; 163 explicit CompilerInstance(bool BuildingModule = false); 164 ~CompilerInstance();
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/ARCMigrate/ |
| H A D | 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;
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Rewrite/Frontend/ |
| H A D | 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,
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 54 CompilerInstance::CompilerInstance(bool BuildingModule) in CompilerInstance() function in CompilerInstance 61 CompilerInstance::~CompilerInstance() { in ~CompilerInstance() 65 void CompilerInstance::setInvocation(CompilerInvocation *Value) { in setInvocation() 69 bool CompilerInstance::shouldBuildGlobalModuleIndex() const { in shouldBuildGlobalModuleIndex() 76 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) { in setDiagnostics() 80 void CompilerInstance::setTarget(TargetInfo *Value) { in setTarget() 84 void CompilerInstance::setFileManager(FileManager *Value) { in setFileManager() 92 void CompilerInstance::setSourceManager(SourceManager *Value) { in setSourceManager() 96 void CompilerInstance::setPreprocessor(Preprocessor *Value) { PP = Value; } in setPreprocessor() 98 void CompilerInstance::setASTContext(ASTContext *Value) { Context = Value; } in setASTContext() [all …]
|
| H A D | FrontendActions.cpp | 37 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 49 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 56 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 63 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 68 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 73 DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer() 79 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 92 bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI, in ComputeASTConsumerArguments() 117 GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer() 256 bool GenerateModuleAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction() [all …]
|
| H A D | ASTMerge.cpp | 20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction() 35 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
|
| H A D | FrontendAction.cpp | 138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer() 171 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile() 422 CompilerInstance &CI = getCompilerInstance(); in Execute() 443 CompilerInstance &CI = getCompilerInstance(); in EndSourceFile() 508 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() 533 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer() 539 WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer() 543 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() 546 bool WrapperFrontendAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
|
| H A D | ChainedIncludesSource.cpp | 34 std::vector<CompilerInstance *> CIs; 76 createASTReader(CompilerInstance &CI, StringRef pchFile, in createASTReader() 113 CompilerInstance &CI, IntrusiveRefCntPtr<ExternalSemaSource> &Reader) { in createChainedIncludesSource() 147 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance()); in createChainedIncludesSource()
|
| /minix3/external/bsd/llvm/dist/clang/unittests/Frontend/ |
| H A D | FrontendActionTest.cpp | 38 virtual bool BeginSourceFileAction(CompilerInstance &ci, StringRef filename) { in BeginSourceFileAction() 45 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer() 54 Visitor(CompilerInstance &CI, bool ActOnEndOfTranslationUnit, in Visitor() 72 CompilerInstance &CI; 87 CompilerInstance compiler; in TEST() 107 CompilerInstance compiler; in TEST() 134 CompilerInstance compiler; in TEST() 180 CompilerInstance Compiler; in TEST()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | FrontendActions.cpp | 34 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 44 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 87 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction() 107 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() 152 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 174 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() 182 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction() 190 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
|
| /minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| H A D | ModelInjector.h | 36 class CompilerInstance; variable 45 ModelInjector(CompilerInstance &CI); 65 CompilerInstance &CI;
|
| H A D | FrontendActions.cpp | 17 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() 25 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
|
| H A D | ModelInjector.cpp | 28 ModelInjector::ModelInjector(CompilerInstance &CI) : CI(CI) {} in ModelInjector() 79 CompilerInstance Instance; in onBodySynthesis()
|
| /minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | ARCMTActions.cpp | 17 bool CheckAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() 30 bool ModifyAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation() 38 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/FrontendTool/ |
| H A D | Utils.h | 20 class CompilerInstance; variable 26 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/ |
| H A D | AnalysisConsumer.h | 29 class CompilerInstance; variable 43 CreateAnalysisConsumer(CompilerInstance &CI);
|
| H A D | FrontendActions.h | 29 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, 47 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
|
| /minix3/external/bsd/llvm/dist/clang/examples/PrintFunctionNames/ |
| H A D | PrintFunctionNames.cpp | 39 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer() 44 bool ParseArgs(const CompilerInstance &CI, in ParseArgs()
|
| /minix3/external/bsd/llvm/dist/clang/unittests/AST/ |
| H A D | ExternalASTSourceTest.cpp | 38 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer() 48 CompilerInstance Compiler; in testExternalASTSource()
|
| /minix3/external/bsd/llvm/dist/clang/tools/driver/ |
| H A D | cc1_main.cpp | 67 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance()); in cc1_main()
|
| /minix3/external/bsd/llvm/dist/clang/lib/FrontendTool/ |
| H A D | ExecuteCompilerInvocation.cpp | 34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction() 116 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction() 164 bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) { in ExecuteCompilerInvocation()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Tooling/ |
| H A D | Tooling.h | 112 virtual bool handleBeginSource(CompilerInstance &CI, StringRef Filename) { in handleBeginSource() 341 CreateASTConsumer(clang::CompilerInstance &, StringRef) override { in newFrontendActionFactory() 346 bool BeginSourceFileAction(CompilerInstance &CI, in newFrontendActionFactory()
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | RAVFrontendAction.rst | 29 clang::CompilerInstance &Compiler, llvm::StringRef InFile) { 109 The ASTContext is available from the CompilerInstance during the call to 116 clang::CompilerInstance &Compiler, llvm::StringRef InFile) { 149 #include "clang/Frontend/CompilerInstance.h" 191 clang::CompilerInstance &Compiler, llvm::StringRef InFile) {
|