Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp2420 const ExplodedNode *ExprNode, in handle() argument
2437 ExprNode->getLocationAs<CallExitEnd>()) in handle()
2442 ExprNode = ExprNode->getFirstPred(); in handle()
2443 if (!ExprNode) in handle()
2458 } while (ExprNode->getStackFrame() == CurrentSFC); in handle()
2461 while (ExprNode && ExprNode->getLocation().getAs<PostStmt>()) in handle()
2462 ExprNode = ExprNode->getFirstPred(); in handle()
2463 if (!ExprNode) in handle()
2476 ProgramStateRef State = ExprNode->getState(); in handle()
2477 SVal RetVal = ExprNode->getSVal(E); in handle()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3698 const Expr *ExprNode = Node.getImplicitObjectArgument() in AST_MATCHER_P() local
3700 return (ExprNode != nullptr && in AST_MATCHER_P()
3701 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
3933 const auto *ExprNode = Node.getCallee();
3934 return (ExprNode != nullptr &&
3935 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-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h314 const ExplodedNode *ExprNode,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp3108 Expr *ExprNode = C->getImplicitObjectArgument(); in IgnoreUnlessSpelledInSource() local
3109 if (ExprNode->getSourceRange() == E->getSourceRange()) { in IgnoreUnlessSpelledInSource()
3110 return ExprNode; in IgnoreUnlessSpelledInSource()
3112 if (auto *PE = dyn_cast<ParenExpr>(ExprNode)) { in IgnoreUnlessSpelledInSource()
3117 ExprNode = ExprNode->IgnoreParenImpCasts(); in IgnoreUnlessSpelledInSource()
3118 if (ExprNode->getSourceRange() == E->getSourceRange()) in IgnoreUnlessSpelledInSource()
3119 return ExprNode; in IgnoreUnlessSpelledInSource()
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp166 if (auto *ExprNode = dyn_cast_or_null<Expr>(StmtNode)) { in getStmtToTraverse() local
173 ExprNode); in getStmtToTraverse()