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

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp130 if (ExplodedNode *errorNode = C.generateErrorNode()) {
136 errorNode);
H A DNonNullParamChecker.cpp144 if (ExplodedNode *errorNode = C.generateErrorNode(stateNull)) {
148 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1);
150 R = genReportReferenceToNullPointer(errorNode, ArgE);
H A DArrayBoundCheckerV2.cpp234 ExplodedNode *errorNode = checkerContext.generateErrorNode(errorState); local
235 if (!errorNode)
259 auto BR = std::make_unique<PathSensitiveBugReport>(*BT, os.str(), errorNode);
H A DBasicObjCFoundationChecks.cpp747 Optional<ExplodedNode*> errorNode;
771 if (!errorNode.hasValue())
772 errorNode = C.generateNonFatalErrorNode();
774 if (!errorNode.getValue())
792 errorNode.getValue());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h370 const ExplodedNode *errorNode)
371 : BugReport(Kind::PathSensitive, bt, desc), ErrorNode(errorNode),
376 const ExplodedNode *errorNode)
378 ErrorNode(errorNode),
390 const ExplodedNode *errorNode,
393 : BugReport(Kind::PathSensitive, bt, desc), ErrorNode(errorNode),
396 assert(errorNode);
369 PathSensitiveBugReport(const BugType &bt, StringRef desc, const ExplodedNode *errorNode) argument
375 PathSensitiveBugReport(const BugType &bt, StringRef shortDesc, StringRef desc, const ExplodedNode *errorNode) argument
389 PathSensitiveBugReport(const BugType &bt, StringRef desc, const ExplodedNode *errorNode, PathDiagnosticLocation LocationToUnique, const Decl *DeclToUnique) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2915 const ExplodedNode *errorNode = R->getErrorNode(); local
2916 if (errorNode->isSink()) {
2921 if (errorNode->succ_empty()) {
2932 if (const CFGBlock *ErrorB = errorNode->getCFGBlock())
2944 WL.push_back(errorNode);
2945 Visited[errorNode] = 1;

Completed in 125 milliseconds