Home
last modified time | relevance | path

Searched refs:getLocationAs (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp327 if (!N->getLocationAs<PostStore>() && !N->getLocationAs<PostInitializer>() && in wasRegionOfInterestModifiedAt()
328 !N->getLocationAs<PostStmt>()) in wasRegionOfInterestModifiedAt()
332 if (auto PS = N->getLocationAs<PostStmt>()) in wasRegionOfInterestModifiedAt()
404 assert(N->getLocationAs<CallEnter>()); in getMatchingCallExitEnd()
412 return N->getLocationAs<CallExitEnd>() && in getMatchingCallExitEnd()
426 assert(CallExitBeginN->getLocationAs<CallExitBegin>()); in findModifyingFrames()
437 if (CurrN->getLocationAs<CallExitBegin>()) { in findModifyingFrames()
445 if (auto CE = CurrN->getLocationAs<CallEnter>()) { in findModifyingFrames()
476 auto CallExitLoc = N->getLocationAs<CallExitBegin>(); in VisitNode()
1034 std::optional<StmtPoint> SP = N->getLocationAs<StmtPoint>(); in visitNodeInitial()
[all …]
H A DExprEngineCallAndReturn.cpp103 CE = Node->getLocationAs<CallEnter>(); in getLastStmt()
H A DBugReporter.cpp3219 } else if (auto CE = N->getLocationAs<CallEnter>()) { in findExecutedLines()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNoOwnershipChangeVisitor.cpp65 CallEnterN->getLocationAs<CallEnter>()->getCallExpr())) in getFunctionName()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp425 auto PP = N->getLocationAs<BlockEdge>(); in annotateStartParameter()
463 if (auto CE = N->getLocationAs<CallExitBegin>()) in VisitNode()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h171 template <typename T> std::optional<T> getLocationAs() const & { in getLocationAs() function