Home
last modified time | relevance | path

Searched refs:BugReport (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h119 class BugReport {
136 BugReport(Kind kind, const BugType &bt, StringRef desc) in BugReport() function
137 : BugReport(kind, bt, "", desc) {} in BugReport()
145 virtual ~BugReport() = default;
251 class BasicBugReport : public BugReport {
259 static bool classof(const BugReport *R) { in classof()
289 class PathSensitiveBugReport : public BugReport {
398 static bool classof(const BugReport *R) { in classof()
550 void AddReport(std::unique_ptr<BugReport> &&R) { in AddReport()
653 virtual BugReport *
[all …]
H A DBugSuppression.h25 class BugReport; variable
33 bool isSuppressed(const BugReport &);
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DFuchsiaHandleChecker.cpp373 std::vector<std::function<std::string(BugReport & BR)>> Notes; in checkPostCall()
382 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string { in checkPostCall()
398 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string { in checkPostCall()
432 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall()
446 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall()
460 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall()
H A DReturnValueChecker.cpp152 [Name, ExpectedValue](BugReport &BR) -> std::string { in checkEndFunction()
H A DNonNullParamChecker.cpp184 std::unique_ptr<BugReport> R; in checkPreCall()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2900 void BugReporter::emitReport(std::unique_ptr<BugReport> R) { in emitReport()
2928 void PathSensitiveBugReporter::emitReport(std::unique_ptr<BugReport> R) { in emitReport()
2966 BugReport *PathSensitiveBugReporter::findReportInEquivalenceClass( in findReportInEquivalenceClass()
2967 BugReportEquivClass &EQ, SmallVectorImpl<BugReport *> &bugReports) { in findReportInEquivalenceClass()
2974 BugReport *R = EQ.getReports()[0].get(); in findReportInEquivalenceClass()
2990 BugReport *exampleReport = nullptr; in findReportInEquivalenceClass()
3071 SmallVector<BugReport*, 10> bugReports; in FlushReport()
3072 BugReport *report = findReportInEquivalenceClass(EQ, bugReports); in FlushReport()
3207 BugReport *exampleReport, ArrayRef<PathDiagnosticConsumer *> consumers, in generateDiagnosticForConsumerMap()
3208 ArrayRef<BugReport *> bugReports) { in generateDiagnosticForConsumerMap()
[all …]
H A DBugSuppression.cpp129 bool BugSuppression::isSuppressed(const BugReport &R) { in isSuppressed()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h261 void emitReport(std::unique_ptr<BugReport> R) { in emitReport()