Searched defs:ExprNode (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp164 const Expr *ExprNode = dyn_cast_or_null<Expr>(StmtNode); local
165 if (ExprNode != NULL) {
166 StmtToTraverse = ExprNode->IgnoreParenImpCasts();
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1309 const Expr *ExprNode = const_cast<CXXMemberCallExpr&>(Node) local
1312 return (ExprNode != NULL &&
1313 InnerMatcher.matches(*ExprNode, Finder, Builder));
1334 const Expr *ExprNode = Node.getCallee(); local
1335 return (ExprNode != NULL &&
1336 InnerMatcher.matches(*ExprNode, Finder, Builder));
1457 const Expr *ExprNode = local
1459 return (ExprNode != NULL &&
1460 InnerMatcher.matches(*ExprNode, Finder, Builder));

Completed in 80 milliseconds