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 {
55 : BugType(name, "Logic error"), desc(description) {}
58 : BugType(name, "Logic error"), desc(name) {}
PathDiagnostic.h 471 std::string BugType;
479 PathDiagnostic(StringRef bugtype, StringRef desc,
485 StringRef getBugType() const { return BugType; }
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 109 const char *BugType = 0;
116 BugType = "Dead initialization";
122 BugType = "Dead increment";
124 if (!BugType) BugType = "Dead assignment";
135 BR.EmitBasicReport(BugType, "Dead store", os.str(), L, R);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 253 const std::string& BugType = D.getBugType();
254 if (!BugType.empty())
255 os << "\n<!-- BUGTYPE " << BugType << " -->\n";
BugReporter.cpp 16 #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
    [all...]

Completed in 73 milliseconds