HomeSort by: relevance | last modified time | path
    Searched refs:errorNode (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 133 if (ExplodedNode *errorNode = C.generateErrorNode()) {
139 errorNode);
NonNullParamChecker.cpp 180 if (ExplodedNode *errorNode = C.generateErrorNode(stateNull)) {
184 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1);
186 R = genReportReferenceToNullPointer(errorNode, ArgE);
278 NonNullParamChecker::genReportNullAttrNonNull(const ExplodedNode *ErrorNode,
295 std::make_unique<PathSensitiveBugReport>(*BTAttrNonNull, SBuf, ErrorNode);
297 bugreporter::trackExpressionValue(ErrorNode, ArgE, *R);
304 const ExplodedNode *ErrorNode, const Expr *ArgE) const {
309 *BTNullRefArg, "Forming reference to null pointer", ErrorNode);
314 bugreporter::trackExpressionValue(ErrorNode, ArgEDeref, *R);
ArrayBoundCheckerV2.cpp 234 ExplodedNode *errorNode = checkerContext.generateErrorNode(errorState);
235 if (!errorNode)
259 auto BR = std::make_unique<PathSensitiveBugReport>(*BT, os.str(), errorNode);
BasicObjCFoundationChecks.cpp 747 Optional<ExplodedNode*> errorNode;
771 if (!errorNode.hasValue())
772 errorNode = C.generateNonFatalErrorNode();
774 if (!errorNode.getValue())
792 errorNode.getValue());
  /src/usr.bin/make/
compat.c 729 GNode *errorNode = NULL;
762 if (GNode_IsError(gn) && errorNode == NULL)
763 errorNode = gn;
766 if (errorNode == NULL) {
770 errorNode = endNode;
773 if (errorNode != NULL) {
778 PrintOnError(errorNode, "\nStop.\n");
main.c 2078 static GNode *errorNode = NULL;
2086 if (errorNode != NULL)
2129 errorNode = Targ_FindNode(".ERROR");
2130 if (errorNode != NULL) {
2131 errorNode->type |= OP_SPECIAL;
2132 Compat_Make(errorNode, errorNode);
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 300 const ExplodedNode *ErrorNode = nullptr;
302 /// The range that corresponds to ErrorNode's program point. It is usually
372 const ExplodedNode *errorNode)
373 : PathSensitiveBugReport(bt, desc, desc, errorNode) {}
376 const ExplodedNode *errorNode)
377 : PathSensitiveBugReport(bt, shortDesc, desc, errorNode,
389 const ExplodedNode *errorNode,
392 : PathSensitiveBugReport(bt, desc, desc, errorNode, LocationToUnique,
396 const ExplodedNode *errorNode,
404 const ExplodedNode *getErrorNode() const { return ErrorNode; }
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 138 const ExplodedNode *ErrorNode,
213 const ExplodedNode *const ErrorNode;
228 PathSensitiveBugReport *r, const ExplodedNode *ErrorNode,
1969 const PathDiagnosticConsumer *PDC, const ExplodedNode *ErrorNode,
1971 : Consumer(PDC), CurrentNode(ErrorNode),
1974 LCM[&PD->getActivePath()] = ErrorNode->getLocationContext();
1979 PathSensitiveBugReport *r, const ExplodedNode *ErrorNode,
1982 ErrorNode(ErrorNode),
1987 PathDiagnosticConstruct Construct(PDC, ErrorNode, R)
    [all...]

Completed in 39 milliseconds