Searched refs:BugTypes (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h340 // BugTypes (collections of related reports).
383 /// It collects the BugReports and BugTypes and knows how to generate
392 BugTypesTy BugTypes; member in class:clang::ento::BugReporter
412 BugReporter(BugReporterData& d, Kind k) : BugTypes(F.getEmptySet()), kind(k),
416 BugReporter(BugReporterData& d) : BugTypes(F.getEmptySet()), kind(BaseBRKind),
433 /// \brief Iterator over the set of BugTypes tracked by the BugReporter.
435 iterator begin() { return BugTypes.begin(); }
436 iterator end() { return BugTypes.end(); }
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2734 if (BugTypes.isEmpty())
2738 // warnings and new BugTypes.
2742 for (BugTypesTy::iterator I=BugTypes.begin(), E=BugTypes.end(); I!=E; ++I)
2757 // BugReporter owns and deletes only BugTypes created implicitly through
2759 // FIXME: There are leaks from checkers that assume that the BugTypes they
2766 BugTypes = F.getEmptySet();
3201 BugTypes = F.add(BugTypes, BT);

Completed in 75 milliseconds