Searched refs:BugReport (Results 1 – 8 of 8) sorted by relevance
/openbsd/gnu/llvm/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() 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 …]
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
H A D | FuchsiaHandleChecker.cpp | 373 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 D | ReturnValueChecker.cpp | 152 [Name, ExpectedValue](BugReport &BR) -> std::string { in checkEndFunction()
|
H A D | NonNullParamChecker.cpp | 182 std::unique_ptr<BugReport> R; in checkPreCall()
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporter.cpp | 2897 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() 3201 BugReport *exampleReport, ArrayRef<PathDiagnosticConsumer *> consumers, in generateDiagnosticForConsumerMap() 3202 ArrayRef<BugReport *> bugReports) { in generateDiagnosticForConsumerMap() [all …]
|
/openbsd/gnu/llvm/clang/tools/scan-view/share/ |
H A D | Reporter.py | 19 class BugReport(object): class
|
H A D | ScanView.py | 341 bug = Reporter.BugReport(title, description, files)
|
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | CheckerContext.h | 261 void emitReport(std::unique_ptr<BugReport> R) { in emitReport()
|