Searched refs:errorNode (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/bmake/ |
| H A D | compat.c | 732 GNode *errorNode = NULL; in Compat_MakeAll() local 765 if (GNode_IsError(gn) && errorNode == NULL) in Compat_MakeAll() 766 errorNode = gn; in Compat_MakeAll() 769 if (errorNode == NULL) { in Compat_MakeAll() 773 errorNode = endNode; in Compat_MakeAll() 776 if (errorNode != NULL) { in Compat_MakeAll() 781 PrintOnError(errorNode, "\nStop.\n"); in Compat_MakeAll()
|
| H A D | main.c | 2105 static GNode *errorNode = NULL; in PrintOnError() local 2113 if (errorNode != NULL) in PrintOnError() 2156 errorNode = Targ_FindNode(".ERROR"); in PrintOnError() 2157 if (errorNode != NULL) { in PrintOnError() 2158 errorNode->type |= OP_SPECIAL; in PrintOnError() 2159 Compat_Make(errorNode, errorNode); in PrintOnError()
|
| /freebsd/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/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NonNullParamChecker.cpp | 181 if (ExplodedNode *errorNode = C.generateErrorNode(stateNull)) { in checkPreCall() local 185 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1); in checkPreCall() 187 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
|
| H A D | CastSizeChecker.cpp | 135 if (ExplodedNode *errorNode = C.generateErrorNode()) { in checkPreStmt() local 139 auto R = std::make_unique<PathSensitiveBugReport>(BT, Msg, errorNode); in checkPreStmt()
|
| H A D | BasicObjCFoundationChecks.cpp | 751 std::optional<ExplodedNode *> errorNode; in checkPreObjCMessage() local 775 if (!errorNode) in checkPreObjCMessage() 776 errorNode = C.generateNonFatalErrorNode(); in checkPreObjCMessage() 778 if (!*errorNode) in checkPreObjCMessage() 796 std::make_unique<PathSensitiveBugReport>(*BT, os.str(), *errorNode); in checkPreObjCMessage()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 2162 const ExplodedNode *errorNode, PathDiagnosticLocation LocationToUnique, in PathSensitiveBugReport() argument 2164 : BugReport(Kind::PathSensitive, bt, shortDesc, desc), ErrorNode(errorNode), in PathSensitiveBugReport() 3073 const ExplodedNode *errorNode = R->getErrorNode(); in findReportInEquivalenceClass() local 3074 if (errorNode->isSink()) { in findReportInEquivalenceClass() 3079 if (errorNode->succ_empty()) { in findReportInEquivalenceClass() 3090 if (const CFGBlock *ErrorB = errorNode->getCFGBlock()) in findReportInEquivalenceClass() 3102 WL.push_back(errorNode); in findReportInEquivalenceClass() 3103 Visited[errorNode] = 1; in findReportInEquivalenceClass()
|