Searched refs:ExprNode (Results 1 – 4 of 4) sorted by relevance
2424 const ExplodedNode *ExprNode, in handle() argument2436 const StackFrameContext *CurrentSFC = ExprNode->getStackFrame(); in handle()2441 ExprNode->getLocationAs<CallExitEnd>()) in handle()2446 ExprNode = ExprNode->getFirstPred(); in handle()2447 if (!ExprNode) in handle()2450 const StackFrameContext *PredSFC = ExprNode->getStackFrame(); in handle()2456 if (std::optional<StmtPoint> SP = ExprNode->getLocationAs<StmtPoint>()) in handle()2462 } while (ExprNode->getStackFrame() == CurrentSFC); in handle()2465 while (ExprNode && ExprNode->getLocation().getAs<PostStmt>()) in handle()2466 ExprNode = ExprNode->getFirstPred(); in handle()[all …]
3699 const Expr *ExprNode = Node.getImplicitObjectArgument() in AST_MATCHER_P() local3701 return (ExprNode != nullptr && in AST_MATCHER_P()3702 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()3934 const auto *ExprNode = Node.getCallee();3935 return (ExprNode != nullptr &&3936 InnerMatcher.matches(*ExprNode, Finder, Builder));4207 const Expr *ExprNode = Node.getImplicitObjectArgument(); in AST_MATCHER_P() local4208 return (ExprNode != nullptr && in AST_MATCHER_P()4209 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
314 const ExplodedNode *ExprNode,
3144 Expr *ExprNode = C->getImplicitObjectArgument(); in IgnoreUnlessSpelledInSource() local3145 if (ExprNode->getSourceRange() == E->getSourceRange()) { in IgnoreUnlessSpelledInSource()3146 return ExprNode; in IgnoreUnlessSpelledInSource()3148 if (auto *PE = dyn_cast<ParenExpr>(ExprNode)) { in IgnoreUnlessSpelledInSource()3153 ExprNode = ExprNode->IgnoreParenImpCasts(); in IgnoreUnlessSpelledInSource()3154 if (ExprNode->getSourceRange() == E->getSourceRange()) in IgnoreUnlessSpelledInSource()3155 return ExprNode; in IgnoreUnlessSpelledInSource()