Lines Matching defs:Node

68   DynTypedNode Node;  member
242 bool TraverseCXXForRangeStmt(CXXForRangeStmt *Node) { in TraverseCXXForRangeStmt()
260 bool TraverseCXXRewrittenBinaryOperator(CXXRewrittenBinaryOperator *Node) { in TraverseCXXRewrittenBinaryOperator()
278 bool TraverseLambdaExpr(LambdaExpr *Node) { in TraverseLambdaExpr()
370 bool match(const T &Node) { in match()
397 bool traverse(const T &Node) { in traverse()
594 bool memoizedMatchesRecursively(const DynTypedNode &Node, ASTContext &Ctx, in memoizedMatchesRecursively()
629 bool matchesRecursively(const DynTypedNode &Node, in matchesRecursively()
660 bool matchesChildOf(const DynTypedNode &Node, ASTContext &Ctx, in matchesChildOf()
668 bool matchesDescendantOf(const DynTypedNode &Node, ASTContext &Ctx, in matchesDescendantOf()
678 bool matchesAncestorOf(const DynTypedNode &Node, ASTContext &Ctx, in matchesAncestorOf()
693 void match(const DynTypedNode &Node) { in match()
718 template <typename T> void match(const T &Node) { in match()
866 static void dumpNode(const ASTContext &Ctx, const DynTypedNode &Node, in dumpNode()
1012 void matchWithoutFilter(const T &Node, const MC &Matchers) { in matchWithoutFilter()
1074 void matchDispatch(const Decl *Node) { in matchDispatch()
1077 void matchDispatch(const Stmt *Node) { in matchDispatch()
1081 void matchDispatch(const Type *Node) { in matchDispatch()
1084 void matchDispatch(const TypeLoc *Node) { in matchDispatch()
1087 void matchDispatch(const QualType *Node) { in matchDispatch()
1090 void matchDispatch(const NestedNameSpecifier *Node) { in matchDispatch()
1093 void matchDispatch(const NestedNameSpecifierLoc *Node) { in matchDispatch()
1096 void matchDispatch(const CXXCtorInitializer *Node) { in matchDispatch()
1099 void matchDispatch(const TemplateArgumentLoc *Node) { in matchDispatch()
1102 void matchDispatch(const Attr *Node) { in matchDispatch()
1110 bool matchesParentOf(const DynTypedNode &Node, const DynTypedMatcher &Matcher, in matchesParentOf()
1138 bool matchesAnyAncestorOf(DynTypedNode Node, ASTContext &Ctx, in matchesAnyAncestorOf()
1666 void MatchFinder::match(const clang::DynTypedNode &Node, ASTContext &Context) { in match()