Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h372 const ExplodedNode *errorNode) in PathSensitiveBugReport() argument
373 : PathSensitiveBugReport(bt, desc, desc, errorNode) {} in PathSensitiveBugReport()
376 const ExplodedNode *errorNode) in PathSensitiveBugReport() argument
377 : PathSensitiveBugReport(bt, shortDesc, desc, errorNode, in PathSensitiveBugReport()
389 const ExplodedNode *errorNode, in PathSensitiveBugReport() argument
392 : PathSensitiveBugReport(bt, desc, desc, errorNode, LocationToUnique, in PathSensitiveBugReport()
396 const ExplodedNode *errorNode,
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DNonNullParamChecker.cpp180 if (ExplodedNode *errorNode = C.generateErrorNode(stateNull)) { in checkPreCall() local
184 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1); in checkPreCall()
186 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
DCastSizeChecker.cpp133 if (ExplodedNode *errorNode = C.generateErrorNode()) { in checkPreStmt() local
139 errorNode); in checkPreStmt()
DArrayBoundCheckerV2.cpp234 ExplodedNode *errorNode = checkerContext.generateErrorNode(errorState); in reportOOB() local
235 if (!errorNode) in reportOOB()
259 auto BR = std::make_unique<PathSensitiveBugReport>(*BT, os.str(), errorNode); in reportOOB()
DBasicObjCFoundationChecks.cpp747 Optional<ExplodedNode*> errorNode; in checkPreObjCMessage() local
771 if (!errorNode.hasValue()) in checkPreObjCMessage()
772 errorNode = C.generateNonFatalErrorNode(); in checkPreObjCMessage()
774 if (!errorNode.getValue()) in checkPreObjCMessage()
792 errorNode.getValue()); in checkPreObjCMessage()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp2124 const ExplodedNode *errorNode, PathDiagnosticLocation LocationToUnique, in PathSensitiveBugReport() argument
2126 : BugReport(Kind::PathSensitive, bt, shortDesc, desc), ErrorNode(errorNode), in PathSensitiveBugReport()
2982 const ExplodedNode *errorNode = R->getErrorNode(); in findReportInEquivalenceClass() local
2983 if (errorNode->isSink()) { in findReportInEquivalenceClass()
2988 if (errorNode->succ_empty()) { in findReportInEquivalenceClass()
2999 if (const CFGBlock *ErrorB = errorNode->getCFGBlock()) in findReportInEquivalenceClass()
3011 WL.push_back(errorNode); in findReportInEquivalenceClass()
3012 Visited[errorNode] = 1; in findReportInEquivalenceClass()