Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp116 const Decl *DeclWithIssue; member in __anon02181dab0111::StringRefCheckerVisitor
123 : DeclWithIssue(declWithIssue), BR(br), Checker(checker) {} in StringRefCheckerVisitor()
183 BR.EmitBasicReport(DeclWithIssue, Checker, desc, "LLVM Conventions", desc, in VisitVarDecl()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h253 const Decl *DeclWithIssue = nullptr; variable
269 return DeclWithIssue; in getDeclWithIssue()
283 DeclWithIssue = declWithIssue; in setDeclWithIssue()
629 void EmitBasicReport(const Decl *DeclWithIssue, const CheckerBase *Checker,
635 void EmitBasicReport(const Decl *DeclWithIssue, CheckerNameRef CheckerName,
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp707 const Decl *DeclWithIssue = D->getDeclWithIssue(); in FlushDiagnosticsImpl() local
709 DeclWithIssue, LangOpts)) in FlushDiagnosticsImpl()
714 if (const Decl *DeclWithIssue = D->getDeclWithIssue()) { in FlushDiagnosticsImpl() local
716 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DeclWithIssue)) { in FlushDiagnosticsImpl()
744 if (const Stmt *Body = DeclWithIssue->getBody()) { in FlushDiagnosticsImpl()
H A DHTMLDiagnostics.cpp289 if (const Decl *DeclWithIssue = D.getDeclWithIssue()) { in ReportDiag() local
290 if (const auto *ND = dyn_cast<NamedDecl>(DeclWithIssue)) in ReportDiag()
293 if (const Stmt *Body = DeclWithIssue->getBody()) { in ReportDiag()
H A DBugReporter.cpp3314 void BugReporter::EmitBasicReport(const Decl *DeclWithIssue, in EmitBasicReport() argument
3320 EmitBasicReport(DeclWithIssue, Checker->getCheckerName(), Name, Category, Str, in EmitBasicReport()
3324 void BugReporter::EmitBasicReport(const Decl *DeclWithIssue, in EmitBasicReport() argument
3333 R->setDeclWithIssue(DeclWithIssue); in EmitBasicReport()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DPathDiagnostic.h765 const Decl *DeclWithIssue; variable
788 PathDiagnostic(StringRef CheckerName, const Decl *DeclWithIssue,
858 const Decl *getDeclWithIssue() const { return DeclWithIssue; } in getDeclWithIssue()
861 DeclWithIssue = D; in setDeclWithIssue()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DPathDiagnostic.cpp124 : CheckerName(CheckerName), DeclWithIssue(declWithIssue), in PathDiagnostic()