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

/external/chromium/chrome/browser/
H A Dbug_report_util.h33 enum BugType { enum in class:BugReportUtil
/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.
28 class BugType { class in namespace:clang::ento
34 BugType(StringRef name, StringRef cat) function in class:clang::ento::BugType
36 virtual ~BugType();
51 class BuiltinBug : public BugType {
56 : BugType(name, "Logic error"), desc(description) {}
59 : BugType(name, "Logic error"), desc(name) {}
H A DPathDiagnostic.h654 std::string BugType; member in class:clang::ento::PathDiagnostic
711 StringRef getBugType() const { return BugType; }
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp177 const char *BugType = 0; local
181 BugType = "Dead initialization";
187 BugType = "Dead increment";
189 if (!BugType) BugType = "Dead assignment";
200 BR.EmitBasicReport(AC->getDecl(), BugType, "Dead store", os.str(), L, R);
/external/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp216 StringRef BugType = D.getBugType(); local
217 if (!BugType.empty())
218 os << "\n<!-- BUGTYPE " << BugType << " -->\n"; local
H A DBugReporter.cpp16 #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
1326 // Methods for BugType and subclasses.
1328 BugType::~BugType() { }
1330 void BugType::FlushReports(BugReporter &BR) {}
1585 // First flush the warnings for each BugType. This may end up creating new
1587 // FIXME: Only NSErrorChecker needs BugType's FlushReports.
1589 SmallVector<const BugType*, 16> bugTypes;
1592 for (SmallVector<const BugType*, 16>::iterator
1594 const_cast<BugType*>(*
[all...]

Completed in 122 milliseconds