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.
29 class BugType {
35 BugType(StringRef name, StringRef cat)
37 virtual ~BugType();
52 class BuiltinBug : public BugType {
57 : BugType(name, "Logic error"), desc(description) {}
60 : BugType(name, "Logic error"), desc(name) {}
PathDiagnostic.h 666 std::string BugType;
682 PathDiagnostic(const Decl *DeclWithIssue, StringRef bugtype,
729 StringRef getBugType() const { return BugType; }
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 176 const char *BugType = 0;
180 BugType = "Dead initialization";
186 BugType = "Dead increment";
188 if (!BugType) BugType = "Dead assignment";
199 BR.EmitBasicReport(AC->getDecl(), BugType, "Dead store", os.str(), L, R);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 217 StringRef BugType = D.getBugType();
218 if (!BugType.empty())
219 os << "\n<!-- BUGTYPE " << BugType << " -->\n";
BugReporter.cpp 26 #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
    [all...]

Completed in 90 milliseconds