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

/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp147 const Expr *ExprNode = dyn_cast_or_null<Expr>(StmtNode); local
148 if (ExprNode) {
149 StmtToTraverse = ExprNode->IgnoreParenImpCasts();
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1800 const Expr *ExprNode = Node.getImplicitObjectArgument() local
1802 return (ExprNode != nullptr &&
1803 InnerMatcher.matches(*ExprNode, Finder, Builder));
1824 const Expr *ExprNode = Node.getCallee(); local
1825 return (ExprNode != nullptr &&
1826 InnerMatcher.matches(*ExprNode, Finder, Builder));
1979 const Expr *ExprNode = Node.getImplicitObjectArgument(); local
1980 return (ExprNode != nullptr &&
1981 InnerMatcher.matches(*ExprNode, Finder, Builder));
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DExprNodes.py156 class ExprNode(Node): class in inherits:Node
166 # [ExprNode or [ExprNode or None] or None]
193 # ExprNode provides some convenience routines which
200 # Framework code in ExprNode provides much of the common
875 class AtomicExprNode(ExprNode):
1033 ExprNode.__init__(self, pos, **kwds)
1806 if ExprNode.nonlocally_immutable(self):
2129 class BackquoteNode(ExprNode):
2132 # arg ExprNode
[all...]

Completed in 3159 milliseconds