Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp2161 const ExplodedNode *ExprNode, in handle() argument
2182 ExprNode = ExprNode->getFirstPred(); in handle()
2183 if (!ExprNode) in handle()
2186 const StackFrameContext *PredSFC = ExprNode->getStackFrame(); in handle()
2198 } while (ExprNode->getStackFrame() == CurrentSFC); in handle()
2201 while (ExprNode && ExprNode->getLocation().getAs<PostStmt>()) in handle()
2202 ExprNode = ExprNode->getFirstPred(); in handle()
2203 if (!ExprNode) in handle()
2216 ProgramStateRef State = ExprNode->getState(); in handle()
2217 SVal RetVal = ExprNode->getSVal(E); in handle()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3607 const Expr *ExprNode = Node.getImplicitObjectArgument() in AST_MATCHER_P() local
3609 return (ExprNode != nullptr && in AST_MATCHER_P()
3610 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
3824 const Expr *ExprNode = Node.getCallee(); in AST_MATCHER_P() local
3825 return (ExprNode != nullptr && in AST_MATCHER_P()
3826 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
4075 const Expr *ExprNode = Node.getImplicitObjectArgument(); in AST_MATCHER_P() local
4076 return (ExprNode != nullptr && in AST_MATCHER_P()
4077 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h306 const ExplodedNode *ExprNode,
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp3002 Expr *ExprNode = C->getImplicitObjectArgument(); in IgnoreUnlessSpelledInSource() local
3003 if (ExprNode->getSourceRange() == E->getSourceRange()) { in IgnoreUnlessSpelledInSource()
3004 return ExprNode; in IgnoreUnlessSpelledInSource()
3006 if (auto *PE = dyn_cast<ParenExpr>(ExprNode)) { in IgnoreUnlessSpelledInSource()
3011 ExprNode = ExprNode->IgnoreParenImpCasts(); in IgnoreUnlessSpelledInSource()
3012 if (ExprNode->getSourceRange() == E->getSourceRange()) in IgnoreUnlessSpelledInSource()
3013 return ExprNode; in IgnoreUnlessSpelledInSource()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp161 if (auto *ExprNode = dyn_cast_or_null<Expr>(StmtNode)) { in getStmtToTraverse() local
168 ExprNode); in getStmtToTraverse()