Searched refs:ExprNode (Results 1 – 5 of 5) sorted by relevance
2402 const ExplodedNode *ExprNode, in handle() argument2414 const StackFrameContext *CurrentSFC = ExprNode->getStackFrame(); in handle()2419 ExprNode->getLocationAs<CallExitEnd>()) in handle()2424 ExprNode = ExprNode->getFirstPred(); in handle()2425 if (!ExprNode) in handle()2428 const StackFrameContext *PredSFC = ExprNode->getStackFrame(); in handle()2434 if (std::optional<StmtPoint> SP = ExprNode->getLocationAs<StmtPoint>()) in handle()2440 } while (ExprNode->getStackFrame() == CurrentSFC); in handle()2443 while (ExprNode && ExprNode->getLocation().getAs<PostStmt>()) in handle()2444 ExprNode = ExprNode->getFirstPred(); in handle()[all …]
3621 const Expr *ExprNode = Node.getImplicitObjectArgument() in AST_MATCHER_P() local3623 return (ExprNode != nullptr && in AST_MATCHER_P()3624 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()3837 const Expr *ExprNode = Node.getCallee(); in AST_MATCHER_P() local3838 return (ExprNode != nullptr && in AST_MATCHER_P()3839 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()4111 const Expr *ExprNode = Node.getImplicitObjectArgument(); in AST_MATCHER_P() local4112 return (ExprNode != nullptr && in AST_MATCHER_P()4113 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
308 const ExplodedNode *ExprNode,
3114 Expr *ExprNode = C->getImplicitObjectArgument(); in IgnoreUnlessSpelledInSource() local3115 if (ExprNode->getSourceRange() == E->getSourceRange()) { in IgnoreUnlessSpelledInSource()3116 return ExprNode; in IgnoreUnlessSpelledInSource()3118 if (auto *PE = dyn_cast<ParenExpr>(ExprNode)) { in IgnoreUnlessSpelledInSource()3123 ExprNode = ExprNode->IgnoreParenImpCasts(); in IgnoreUnlessSpelledInSource()3124 if (ExprNode->getSourceRange() == E->getSourceRange()) in IgnoreUnlessSpelledInSource()3125 return ExprNode; in IgnoreUnlessSpelledInSource()
164 if (auto *ExprNode = dyn_cast_or_null<Expr>(StmtNode)) { in getStmtToTraverse() local171 ExprNode); in getStmtToTraverse()