Searched defs:BugType (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h1 //===--- BugType.h - Bug Information Desciption ----------------*- C++ -*-===//
10 // This file defines BugType, a class representing a bug type.
31 class BugType { class in namespace:clang::ento
40 BugType(class CheckName check, StringRef name, StringRef cat) function in class:clang::ento::BugType
42 BugType(const CheckerBase *checker, StringRef name, StringRef cat) function in class:clang::ento::BugType
45 virtual ~BugType() {}
61 class BuiltinBug : public BugType {
66 : BugType(check, name, categories::LogicError), desc(description) {}
70 : BugType(checker, name, categories::LogicError), desc(description) {}
73 : BugType(checke
[all...]
H A DPathDiagnostic.h716 std::string BugType; member in class:clang::ento::PathDiagnostic
794 StringRef getBugType() const { return BugType; }
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp181 const char *BugType = nullptr; local
185 BugType = "Dead initialization";
191 BugType = "Dead increment";
193 if (!BugType) BugType = "Dead assignment";
204 BR.EmitBasicReport(AC->getDecl(), Checker, BugType, "Dead store", os.str(),
/external/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp234 StringRef BugType = D.getBugType(); local
235 if (!BugType.empty())
236 os << "\n<!-- BUGTYPE " << BugType << " -->\n"; local

Completed in 2197 milliseconds