Home
last modified time | relevance | path

Searched refs:BasicBugReport (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DMemoryUnsafeCastChecker.cpp55 auto Report = std::make_unique<BasicBugReport>(BT, OS.str(), BSLoc); in emitDiagnostics()
75 auto Report = std::make_unique<BasicBugReport>(BT, OS.str(), BSLoc); in emitDiagnosticsUnrelated()
H A DRawPtrRefCallArgsChecker.cpp358 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
375 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBugOnThis()
392 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBugOnReceiver()
H A DForwardDeclChecker.cpp181 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in visitRecordDecl()
328 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
H A DRawPtrRefLocalVarsChecker.cpp365 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
381 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
H A DRetainPtrCtorAdoptChecker.cpp602 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportUseAfterFree()
623 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportLeak()
638 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportLeak()
H A DRawPtrRefLambdaCapturesChecker.cpp431 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
449 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBugOnThisPtr()
H A DRawPtrRefMemberChecker.cpp307 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
H A DRefCntblBaseVirtualDtorChecker.cpp416 auto Report = std::make_unique<BasicBugReport>(Bug, Os.str(), BSLoc); in reportBug()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h251 class BasicBugReport : public BugReport {
256 BasicBugReport(const BugType &bt, StringRef desc, PathDiagnosticLocation l) in BasicBugReport() function
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPaddingChecker.cpp338 auto Report = std::make_unique<BasicBugReport>(PaddingBug, Os.str(), CELoc); in reportRecord()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1353 generateDiagnosticForBasicReport(const BasicBugReport *R, in generateDiagnosticForBasicReport()
2216 void BasicBugReport::Profile(llvm::FoldingSetNodeID& hash) const { in Profile()
3299 auto *basicReport = cast<BasicBugReport>(exampleReport); in generateDiagnosticForConsumerMap()
3375 if (isa<BasicBugReport>(exampleReport)) in generateDiagnosticForConsumerMap()
3426 auto R = std::make_unique<BasicBugReport>(*BT, str, Loc); in EmitBasicReport()