Searched refs:BugReport (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
H A D | BugReporter.h | 119 class BugReport { 136 BugReport(Kind kind, const BugType &bt, StringRef desc) in BugReport() function 137 : BugReport(kind, bt, "", desc) {} in BugReport() 139 BugReport(Kind K, const BugType &BT, StringRef ShortDescription, in BugReport() function 145 virtual ~BugReport() = default; 251 class BasicBugReport : public BugReport { 257 : BugReport(Kind::Basic, bt, desc), Location(l) {} in BasicBugReport() 259 static bool classof(const BugReport *R) { in classof() 289 class PathSensitiveBugReport : public BugReport { 398 static bool classof(const BugReport *R) { in classof() [all …]
|
H A D | BugSuppression.h | 26 class BugReport; variable 36 bool isSuppressed(const BugReport &);
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporter.cpp | 2147 : BugReport(Kind::PathSensitive, bt, shortDesc, desc), ErrorNode(errorNode), in PathSensitiveBugReport() 2931 void BugReporter::emitReport(std::unique_ptr<BugReport> R) { in emitReport() 2959 void PathSensitiveBugReporter::emitReport(std::unique_ptr<BugReport> R) { in emitReport() 2997 BugReport *PathSensitiveBugReporter::findReportInEquivalenceClass( in findReportInEquivalenceClass() 2998 BugReportEquivClass &EQ, SmallVectorImpl<BugReport *> &bugReports) { in findReportInEquivalenceClass() 3005 BugReport *R = EQ.getReports()[0].get(); in findReportInEquivalenceClass() 3021 BugReport *exampleReport = nullptr; in findReportInEquivalenceClass() 3102 SmallVector<BugReport*, 10> bugReports; in FlushReport() 3103 BugReport *report = findReportInEquivalenceClass(EQ, bugReports); in FlushReport() 3248 BugReport *exampleReport, ArrayRef<PathDiagnosticConsumer *> consumers, in generateDiagnosticForConsumerMap() [all …]
|
H A D | BugSuppression.cpp | 129 bool BugSuppression::isSuppressed(const BugReport &R) { in isSuppressed()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | CheckerContext.h | 261 void emitReport(std::unique_ptr<BugReport> R) { in emitReport()
|