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

1 2

  /external/clang/include/clang/FrontendTool/
Utils.h 20 class CompilerInstance;
26 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
  /external/clang/include/clang/Frontend/
FrontendActions.h 28 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
43 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
49 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
55 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
61 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
67 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
73 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
79 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
93 static bool ComputeASTConsumerArguments(CompilerInstance &CI,
105 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI
    [all...]
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; }
196 /// CompilerInstance. When processing AST input files, these objects should
197 /// generally not be initialized in the CompilerInstance -- they wil
    [all...]
ChainedIncludesSource.h 21 class CompilerInstance;
27 static ChainedIncludesSource *create(CompilerInstance &CI);
32 std::vector<CompilerInstance *> CIs;
CompilerInstance.h 1 //===-- CompilerInstance.h - Clang Compiler Instance ------------*- C++ -*-===//
49 /// CompilerInstance - Helper class for managing a single instance of the Clang
52 /// The CompilerInstance serves two purposes:
61 /// object and retaking ownership prior to destroying the CompilerInstance.
65 /// come in two forms; a short form that reuses the CompilerInstance objects,
67 class CompilerInstance : public ModuleLoader {
141 CompilerInstance(const CompilerInstance &) LLVM_DELETED_FUNCTION;
142 void operator=(const CompilerInstance &) LLVM_DELETED_FUNCTION;
144 CompilerInstance();
    [all...]
Utils.h 33 class CompilerInstance;
  /external/clang/include/clang/ARCMigrate/
ARCMTActions.h 22 virtual bool BeginInvocation(CompilerInstance &CI);
30 virtual bool BeginInvocation(CompilerInstance &CI);
39 virtual bool BeginInvocation(CompilerInstance &CI);
40 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
49 virtual bool BeginInvocation(CompilerInstance &CI);
64 CompilerInstance *CompInst;
72 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,StringRef InFile);
73 virtual bool BeginInvocation(CompilerInstance &CI);
  /external/clang/include/clang/Rewrite/Frontend/
FrontendActions.h 25 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
34 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
37 virtual bool BeginSourceFileAction(CompilerInstance &CI,
57 virtual bool BeginInvocation(CompilerInstance &CI);
62 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
  /external/clang/include/clang/StaticAnalyzer/Frontend/
FrontendActions.h 25 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
  /external/clang/lib/StaticAnalyzer/Frontend/
FrontendActions.cpp 12 #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/chromium_org/tools/clang/plugins/
ChromeClassTester.h 13 #include "clang/Frontend/CompilerInstance.h"
19 explicit ChromeClassTester(clang::CompilerInstance& instance,
28 clang::CompilerInstance& instance() { return instance_; }
69 clang::CompilerInstance& instance_;
  /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/tools/driver/
cc1_main.cpp 19 #include "clang/Frontend/CompilerInstance.h"
61 OwningPtr<CompilerInstance> Clang(new CompilerInstance());
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 14 #include "clang/Frontend/CompilerInstance.h"
29 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
61 CompilerInstance compiler;
  /external/clang/lib/Frontend/
CompilerInstance.cpp 1 //===--- CompilerInstance.cpp ---------------------------------------------===//
10 #include "clang/Frontend/CompilerInstance.h"
52 CompilerInstance::CompilerInstance()
57 CompilerInstance::~CompilerInstance() {
61 void CompilerInstance::setInvocation(CompilerInvocation *Value) {
65 bool CompilerInstance::shouldBuildGlobalModuleIndex() const {
72 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) {
76 void CompilerInstance::setTarget(TargetInfo *Value)
    [all...]
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 *ASTDumpXMLAction::CreateASTConsumer(CompilerInstance &CI,
77 ASTConsumer *ASTViewAction::CreateASTConsumer(CompilerInstance &CI,
82 ASTConsumer *DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
87 ASTConsumer *GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI,
100 bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI
    [all...]
FrontendAction.cpp 16 #include "clang/Frontend/CompilerInstance.h"
128 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
162 bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
196 // file, otherwise the CompilerInstance will happily destroy them.
365 CompilerInstance &CI = getCompilerInstance();
393 CompilerInstance &CI = getCompilerInstance();
457 CompilerInstance &CI = getCompilerInstance();
482 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI,
487 ASTConsumer *WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI,
491 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI)
    [all...]
CreateInvocationFromCommandLine.cpp 20 #include "clang/Frontend/CompilerInstance.h"
38 Diags = CompilerInstance::createDiagnostics(new DiagnosticOptions);
  /external/clang/include/clang/Tooling/
Tooling.h 86 virtual bool handleBeginSource(CompilerInstance &CI, StringRef Filename) {
269 clang::ASTConsumer *CreateASTConsumer(clang::CompilerInstance &,
275 virtual bool BeginSourceFileAction(CompilerInstance &CI,
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 40 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
  /external/chromium_org/ppapi/tests/clang/
find_affected_interfaces.cc 21 #include "clang/Frontend/CompilerInstance.h"
129 clang::CompilerInstance &instance, llvm::StringRef /*input_file*/) {
133 virtual bool ParseArgs(const clang::CompilerInstance& /*instance*/,
print_names_and_sizes.cc 18 #include "clang/Frontend/CompilerInstance.h"
153 clang::CompilerInstance &instance, llvm::StringRef /*input_file*/) {
159 virtual bool ParseArgs(const clang::CompilerInstance& /*instance*/,

Completed in 782 milliseconds

1 2