Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp2424 const ExplodedNode *ExprNode, in handle() argument
2436 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 …]
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3699 const Expr *ExprNode = Node.getImplicitObjectArgument() in AST_MATCHER_P() local
3701 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() local
4208 return (ExprNode != nullptr && in AST_MATCHER_P()
4209 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h314 const ExplodedNode *ExprNode,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp3144 Expr *ExprNode = C->getImplicitObjectArgument(); in IgnoreUnlessSpelledInSource() local
3145 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()