Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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 …]
/openbsd/gnu/llvm/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.cpp182 std::unique_ptr<BugReport> R; in checkPreCall()
/openbsd/gnu/llvm/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()
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 DReporter.py19 class BugReport(object): class
H A DScanView.py341 bug = Reporter.BugReport(title, description, files)
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h261 void emitReport(std::unique_ptr<BugReport> R) { in emitReport()