Searched refs:errorNode (Results 1 – 7 of 7) sorted by relevance
| /freebsd-14.2/contrib/bmake/ |
| H A D | compat.c | 747 GNode *errorNode = NULL; in Compat_MakeAll() local 780 if (GNode_IsError(gn) && errorNode == NULL) in Compat_MakeAll() 781 errorNode = gn; in Compat_MakeAll() 785 if (errorNode == NULL) { in Compat_MakeAll() 789 errorNode = endNode; in Compat_MakeAll() 792 if (errorNode != NULL) { in Compat_MakeAll() 797 PrintOnError(errorNode, "\nStop.\n"); in Compat_MakeAll()
|
| H A D | main.c | 2071 static GNode *errorNode = NULL; in PrintOnError() local 2078 if (errorNode != NULL) in PrintOnError() 2104 errorNode = Targ_FindNode(".ERROR"); in PrintOnError() 2105 if (errorNode != NULL) { in PrintOnError() 2106 errorNode->type |= OP_SPECIAL; in PrintOnError() 2107 Compat_Make(errorNode, errorNode); in PrintOnError()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| H A D | BugReporter.h | 370 const ExplodedNode *errorNode) in PathSensitiveBugReport() argument 371 : PathSensitiveBugReport(bt, desc, desc, errorNode) {} in PathSensitiveBugReport() 374 const ExplodedNode *errorNode) in PathSensitiveBugReport() argument 375 : PathSensitiveBugReport(bt, shortDesc, desc, errorNode, in PathSensitiveBugReport() 387 const ExplodedNode *errorNode, in PathSensitiveBugReport() argument 390 : PathSensitiveBugReport(bt, desc, desc, errorNode, LocationToUnique, in PathSensitiveBugReport() 394 const ExplodedNode *errorNode,
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NonNullParamChecker.cpp | 182 if (ExplodedNode *errorNode = C.generateErrorNode(stateNull)) { in checkPreCall() local 186 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1); in checkPreCall() 188 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
|
| H A D | CastSizeChecker.cpp | 133 if (ExplodedNode *errorNode = C.generateErrorNode()) { in checkPreStmt() local 137 auto R = std::make_unique<PathSensitiveBugReport>(BT, Msg, errorNode); in checkPreStmt()
|
| H A D | BasicObjCFoundationChecks.cpp | 756 std::optional<ExplodedNode *> errorNode; in checkPreObjCMessage() local 780 if (!errorNode) in checkPreObjCMessage() 781 errorNode = C.generateNonFatalErrorNode(); in checkPreObjCMessage() 783 if (!*errorNode) in checkPreObjCMessage() 801 std::make_unique<PathSensitiveBugReport>(*BT, os.str(), *errorNode); in checkPreObjCMessage()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 2131 const ExplodedNode *errorNode, PathDiagnosticLocation LocationToUnique, in PathSensitiveBugReport() argument 2133 : BugReport(Kind::PathSensitive, bt, shortDesc, desc), ErrorNode(errorNode), in PathSensitiveBugReport() 2997 const ExplodedNode *errorNode = R->getErrorNode(); in findReportInEquivalenceClass() local 2998 if (errorNode->isSink()) { in findReportInEquivalenceClass() 3003 if (errorNode->succ_empty()) { in findReportInEquivalenceClass() 3014 if (const CFGBlock *ErrorB = errorNode->getCFGBlock()) in findReportInEquivalenceClass() 3026 WL.push_back(errorNode); in findReportInEquivalenceClass() 3027 Visited[errorNode] = 1; in findReportInEquivalenceClass()
|