Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Dcompat.c735 GNode *errorNode = NULL; in Compat_MakeAll() local
768 if (GNode_IsError(gn) && errorNode == NULL) in Compat_MakeAll()
769 errorNode = gn; in Compat_MakeAll()
772 if (errorNode == NULL) { in Compat_MakeAll()
776 errorNode = endNode; in Compat_MakeAll()
779 if (errorNode != NULL) { in Compat_MakeAll()
784 PrintOnError(errorNode, "\nStop.\n"); in Compat_MakeAll()
H A Dmain.c2106 static GNode *errorNode = NULL; in SetErrorVars()
2114 if (errorNode != NULL)
2152 errorNode = Targ_FindNode(".ERROR"); in PrintOnError()
2153 if (errorNode != NULL) { in PrintOnError()
2154 errorNode->type |= OP_SPECIAL; in PrintOnError()
2155 Compat_Make(errorNode, errorNode); in PrintOnError()
2122 static GNode *errorNode = NULL; PrintOnError() local
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h370 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 DCastSizeChecker.cpp133 if (ExplodedNode *errorNode = C.generateErrorNode()) { in checkPreStmt() local
137 auto R = std::make_unique<PathSensitiveBugReport>(BT, Msg, errorNode); in checkPreStmt()
H A DBasicObjCFoundationChecks.cpp752 std::optional<ExplodedNode *> errorNode; in checkPreObjCMessage() local
776 if (!errorNode) in checkPreObjCMessage()
777 errorNode = C.generateNonFatalErrorNode(); in checkPreObjCMessage()
779 if (!*errorNode) in checkPreObjCMessage()
797 std::make_unique<PathSensitiveBugReport>(*BT, os.str(), *errorNode); in checkPreObjCMessage()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2145 const ExplodedNode *errorNode, PathDiagnosticLocation LocationToUnique, in PathSensitiveBugReport() argument
2147 : BugReport(Kind::PathSensitive, bt, shortDesc, desc), ErrorNode(errorNode), in PathSensitiveBugReport()
3028 const ExplodedNode *errorNode = R->getErrorNode(); in findReportInEquivalenceClass() local
3029 if (errorNode->isSink()) { in findReportInEquivalenceClass()
3034 if (errorNode->succ_empty()) { in findReportInEquivalenceClass()
3045 if (const CFGBlock *ErrorB = errorNode->getCFGBlock()) in findReportInEquivalenceClass()
3057 WL.push_back(errorNode); in findReportInEquivalenceClass()
3058 Visited[errorNode] = 1; in findReportInEquivalenceClass()