Home
last modified time | relevance | path

Searched refs:ExprNode (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3595 const Expr *ExprNode = Node.getImplicitObjectArgument() in AST_MATCHER_P() local
3597 return (ExprNode != nullptr && in AST_MATCHER_P()
3598 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
3812 const Expr *ExprNode = Node.getCallee(); in AST_MATCHER_P() local
3813 return (ExprNode != nullptr && in AST_MATCHER_P()
3814 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
4063 const Expr *ExprNode = Node.getImplicitObjectArgument(); in AST_MATCHER_P() local
4064 return (ExprNode != nullptr && in AST_MATCHER_P()
4065 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp2930 Expr *ExprNode = C->getImplicitObjectArgument(); in IgnoreUnlessSpelledInSource() local
2931 if (ExprNode->getSourceRange() == E->getSourceRange()) { in IgnoreUnlessSpelledInSource()
2932 return ExprNode; in IgnoreUnlessSpelledInSource()
2934 if (auto *PE = dyn_cast<ParenExpr>(ExprNode)) { in IgnoreUnlessSpelledInSource()
2939 ExprNode = ExprNode->IgnoreParenImpCasts(); in IgnoreUnlessSpelledInSource()
2940 if (ExprNode->getSourceRange() == E->getSourceRange()) in IgnoreUnlessSpelledInSource()
2941 return ExprNode; in IgnoreUnlessSpelledInSource()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp161 if (auto *ExprNode = dyn_cast_or_null<Expr>(StmtNode)) { in getStmtToTraverse() local
168 ExprNode); in getStmtToTraverse()