Lines Matching refs:RecursiveASTVisitor
2 How to write RecursiveASTVisitor based ASTFrontendActions.
9 a RecursiveASTVisitor to find CXXRecordDecl AST nodes with a specified
49 // Traversing the translation unit decl via a RecursiveASTVisitor
54 // A RecursiveASTVisitor implementation.
58 Using the RecursiveASTVisitor
62 RecursiveASTVisitor to extract the relevant information from the AST.
64 The RecursiveASTVisitor provides hooks of the form bool
69 Let's start by writing a RecursiveASTVisitor that visits all
75 : public RecursiveASTVisitor<FindNamedClassVisitor> {
88 In the methods of our RecursiveASTVisitor we can now use the full power
107 need to hand the ASTContext into our RecursiveASTVisitor implementation.
121 Now that the ASTContext is available in the RecursiveASTVisitor, we can
148 #include "clang/AST/RecursiveASTVisitor.h"
156 : public RecursiveASTVisitor<FindNamedClassVisitor> {