Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
649 virtual BugReport *
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DFuchsiaHandleChecker.cpp372 std::vector<std::function<std::string(BugReport & BR)>> Notes; in checkPostCall()
381 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string { in checkPostCall()
397 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string { in checkPostCall()
431 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall()
445 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall()
459 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string { in checkPostCall()
H A DReturnValueChecker.cpp150 [Name, ExpectedValue](BugReport &BR) -> std::string { in checkEndFunction()
H A DNonNullParamChecker.cpp182 std::unique_ptr<BugReport> R; in checkPreCall()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2897 void BugReporter::emitReport(std::unique_ptr<BugReport> R) { in emitReport()
2921 void PathSensitiveBugReporter::emitReport(std::unique_ptr<BugReport> R) { in emitReport()
2959 BugReport *PathSensitiveBugReporter::findReportInEquivalenceClass( in findReportInEquivalenceClass()
2960 BugReportEquivClass &EQ, SmallVectorImpl<BugReport *> &bugReports) { in findReportInEquivalenceClass()
2967 BugReport *R = EQ.getReports()[0].get(); in findReportInEquivalenceClass()
2983 BugReport *exampleReport = nullptr; in findReportInEquivalenceClass()
3064 SmallVector<BugReport*, 10> bugReports; in FlushReport()
3065 BugReport *report = findReportInEquivalenceClass(EQ, bugReports); in FlushReport()
3203 BugReport *exampleReport, ArrayRef<PathDiagnosticConsumer *> consumers, in generateDiagnosticForConsumerMap()
3204 ArrayRef<BugReport *> bugReports) { in generateDiagnosticForConsumerMap()
[all …]
/llvm-project-15.0.7/clang/tools/scan-view/share/
H A DReporter.py19 class BugReport(object): class
H A DScanView.py341 bug = Reporter.BugReport(title, description, files)
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h244 void emitReport(std::unique_ptr<BugReport> R) { in emitReport()