HomeSort by relevance Sort by last modified time
    Searched defs:BugType (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 1 //===--- BugType.h - Bug Information Desciption ----------------*- C++ -*-===//
10 // This file defines BugType, a class representing a bug type.
31 class BugType {
40 BugType(class CheckName check, StringRef name, StringRef cat)
42 BugType(const CheckerBase *checker, StringRef name, StringRef cat)
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(checker, name, categories::LogicError), desc(name) {
    [all...]
PathDiagnostic.h 716 std::string BugType;
736 StringRef bugtype, StringRef verboseDesc, StringRef shortDesc,
794 StringRef getBugType() const { return BugType; }
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 181 const char *BugType = nullptr;
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/
HTMLDiagnostics.cpp 234 StringRef BugType = D.getBugType();
235 if (!BugType.empty())
236 os << "\n<!-- BUGTYPE " << BugType << " -->\n";

Completed in 74 milliseconds