Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp2402 const ExplodedNode *ExprNode, in handle() argument
2414 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 …]
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3621 const Expr *ExprNode = Node.getImplicitObjectArgument() in AST_MATCHER_P() local
3623 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() local
3838 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() local
4112 return (ExprNode != nullptr && in AST_MATCHER_P()
4113 InnerMatcher.matches(*ExprNode, Finder, Builder)); in AST_MATCHER_P()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h308 const ExplodedNode *ExprNode,
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExpr.cpp3114 Expr *ExprNode = C->getImplicitObjectArgument(); in IgnoreUnlessSpelledInSource() local
3115 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()
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp164 if (auto *ExprNode = dyn_cast_or_null<Expr>(StmtNode)) { in getStmtToTraverse() local
171 ExprNode); in getStmtToTraverse()