Home
last modified time | relevance | path

Searched refs:DeclWithIssue (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h255 const Decl *DeclWithIssue = nullptr; variable
271 return DeclWithIssue; in getDeclWithIssue()
285 DeclWithIssue = declWithIssue; in setDeclWithIssue()
622 void EmitBasicReport(const Decl *DeclWithIssue, const CheckerBase *Checker,
628 void EmitBasicReport(const Decl *DeclWithIssue, CheckerNameRef CheckerName,
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp116 const Decl *DeclWithIssue; member in __anondbc8105f0111::StringRefCheckerVisitor
123 : DeclWithIssue(declWithIssue), BR(br), Checker(checker) {} in StringRefCheckerVisitor()
183 BR.EmitBasicReport(DeclWithIssue, Checker, desc, "LLVM Conventions", desc, in VisitVarDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp706 const Decl *DeclWithIssue = D->getDeclWithIssue(); in FlushDiagnosticsImpl() local
708 DeclWithIssue, LangOpts)) in FlushDiagnosticsImpl()
713 if (const Decl *DeclWithIssue = D->getDeclWithIssue()) { in FlushDiagnosticsImpl() local
715 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DeclWithIssue)) { in FlushDiagnosticsImpl()
743 if (const Stmt *Body = DeclWithIssue->getBody()) { in FlushDiagnosticsImpl()
H A DHTMLDiagnostics.cpp245 if (const Decl *DeclWithIssue = D.getDeclWithIssue()) { in ReportDiag() local
246 if (const auto *ND = dyn_cast<NamedDecl>(DeclWithIssue)) in ReportDiag()
249 if (const Stmt *Body = DeclWithIssue->getBody()) { in ReportDiag()
594 const Decl *DeclWithIssue = D.getDeclWithIssue(); in FinalizeHTML() local
607 << getIssueHash(L, D.getCheckerName(), D.getBugType(), DeclWithIssue, in FinalizeHTML()
H A DBugReporter.cpp3282 void BugReporter::EmitBasicReport(const Decl *DeclWithIssue, in EmitBasicReport() argument
3288 EmitBasicReport(DeclWithIssue, Checker->getCheckerName(), Name, Category, Str, in EmitBasicReport()
3292 void BugReporter::EmitBasicReport(const Decl *DeclWithIssue, in EmitBasicReport() argument
3301 R->setDeclWithIssue(DeclWithIssue); in EmitBasicReport()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DPathDiagnostic.h768 const Decl *DeclWithIssue; variable
791 PathDiagnostic(StringRef CheckerName, const Decl *DeclWithIssue,
861 const Decl *getDeclWithIssue() const { return DeclWithIssue; } in getDeclWithIssue()
864 DeclWithIssue = D; in setDeclWithIssue()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DPathDiagnostic.cpp125 : CheckerName(CheckerName), DeclWithIssue(declWithIssue), in PathDiagnostic()