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

  /external/chromium/chrome/browser/
bug_report_util.h 33 enum BugType {
  /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.
28 class BugType {
34 BugType(StringRef name, StringRef cat)
36 virtual ~BugType();
51 class BuiltinBug : public BugType {
56 : BugType(name, "Logic error"), desc(description) {}
59 : BugType(name, "Logic error"), desc(name) {}
PathDiagnostic.h 611 std::string BugType;
643 StringRef bugtype,
650 StringRef getBugType() const { return BugType; }
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 125 const char *BugType = 0;
129 BugType = "Dead initialization";
135 BugType = "Dead increment";
137 if (!BugType) BugType = "Dead assignment";
148 BR.EmitBasicReport(AC->getDecl(), BugType, "Dead store", os.str(), L, R);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 248 const std::string& BugType = D.getBugType();
249 if (!BugType.empty())
250 os << "\n<!-- BUGTYPE " << BugType << " -->\n";
BugReporter.cpp 16 #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
    [all...]

Completed in 51 milliseconds