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

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
FrontendActions.cpp 16 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
24 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/
FrontendActions.h 31 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
49 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
FrontendActions.h 28 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
38 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
55 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
61 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
67 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
73 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
79 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
92 /// create the PCHGenerator instance returned by CreateASTConsumer.
112 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
126 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI
    [all...]
FrontendAction.h 70 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
260 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
291 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
309 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Frontend/
FrontendActions.h 25 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
34 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
61 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/include/clang/ARCMigrate/
ARCMTActions.h 39 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
ASTMerge.cpp 20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
21 return AdaptedAction->CreateASTConsumer(CI, InFile);
FrontendActions.cpp 58 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
70 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
78 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
87 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
92 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
97 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
161 GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI,
318 SyntaxOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
323 DumpModuleInfoAction::CreateASTConsumer(CompilerInstance &CI,
329 VerifyPCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile)
    [all...]
FrontendAction.cpp 152 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile);
203 std::unique_ptr<ASTConsumer> PluginConsumer = P->CreateASTConsumer(CI, InFile);
1065 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI,
1067 llvm_unreachable("Invalid CreateASTConsumer on preprocessor action!");
1074 WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI,
1076 return WrappedAction->CreateASTConsumer(CI, InFile);
InterfaceStubFunctionsConsumer.cpp 340 GenerateInterfaceStubsAction::CreateASTConsumer(CompilerInstance &CI,
PrecompiledPreamble.cpp 201 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
273 PrecompilePreambleAction::CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/examples/AnnotateFunctions/
AnnotateFunctions.cpp 43 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
CodeGenAction.h 64 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
FrontendActions.cpp 41 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
52 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
164 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
  /src/external/apache2/llvm/dist/clang/examples/PrintFunctionNames/
PrintFunctionNames.cpp 82 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/tools/clang-extdef-mapping/
ClangExtDefMapGen.cpp 106 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/examples/CallSuperAttribute/
CallSuperAttrInfo.cpp 141 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ClangSrcLocDump.cpp 57 CreateASTConsumer(clang::CompilerInstance &Compiler,
59 return Processor.createASTConsumer(Compiler, File);
  /src/external/apache2/llvm/dist/clang/tools/clang-check/
ClangCheck.cpp 147 CreateASTConsumer(clang::CompilerInstance &CI, StringRef InFile) override {
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
Tooling.h 423 CreateASTConsumer(CompilerInstance &, StringRef) override {
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexingAction.cpp 142 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ARCMT.cpp 456 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
ObjCMT.cpp 197 ObjCMigrateAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
202 Consumers.push_back(WrapperFrontendAction::CreateASTConsumer(CI, InFile));
2010 MigrateSourceAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
  /src/external/apache2/llvm/dist/clang/tools/clang-refactor/
ClangRefactor.cpp 448 CreateASTConsumer(clang::CompilerInstance &compiler,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenAction.cpp 913 CodeGenAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {

Completed in 56 milliseconds

1 2