Home
last modified time | relevance | path

Searched refs:BugReport (Results 1 – 10 of 10) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h62 class BugReport : public BugReporterVisitor {
88 BugReport(BugType& bt, llvm::StringRef desc, const ExplodedNode *errornode) in BugReport() function
91 BugReport(BugType& bt, llvm::StringRef shortDesc, llvm::StringRef desc, in BugReport() function
96 virtual ~BugReport();
152 std::list<BugReport*> Reports;
155 void AddReport(BugReport* R) { Reports.push_back(R); } in AddReport()
157 BugReportEquivClass(BugReport* R) { Reports.push_back(R); } in BugReportEquivClass()
166 std::list<BugReport*>::iterator impl;
168 iterator(std::list<BugReport*>::iterator i) : impl(i) {} in iterator()
172 BugReport* operator*() const { return *impl; }
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DStreamChecker.cpp287 BugReport *R = new BugReport(*BT_illegalwhence, in Fseek()
356 BugReport *R =new BugReport(*BT_nullfp, BT_nullfp->getDescription(), N); in CheckNullStream()
386 BugReport *R = new BugReport(*BT_doubleclose, in CheckDoubleClose()
413 BugReport *R = new BugReport(*BT_ResourceLeak, in checkDeadSymbols()
435 BugReport *R = new BugReport(*BT_ResourceLeak, in checkEndPath()
DMallocChecker.cpp354 BugReport *R = new BugReport(*BT_DoubleFree, in FreeMemAux()
589 BugReport *R = new BugReport(*BT_Leak, BT_Leak->getDescription(), N); in checkDeadSymbols()
614 BugReport *R = new BugReport(*BT_Leak, BT_Leak->getDescription(), N); in checkEndPath()
670 BugReport *R = new BugReport(*BT_UseFree, BT_UseFree->getDescription(), in checkLocation()
DChrootChecker.cpp154 BugReport *R = new BugReport(*BT_BreakJail, in checkPreStmt()
DCStringChecker.cpp546 BugReport *report = new BugReport(*BT_AdditionOverflow, warning, N); in checkAdditionOverflow()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp142 class NodeMapClosure : public BugReport::NodeResolver {
155 BugReport *R;
161 BugReport *r, NodeBackMap *Backmap, in PathDiagnosticBuilder()
1214 BugReport::~BugReport() {} in ~BugReport()
1217 const Stmt* BugReport::getStmt() const { in getStmt()
1233 BugReport::getEndPath(BugReporterContext& BRC, in getEndPath()
1241 BugReport::ranges_iterator Beg, End; in getEndPath()
1256 std::pair<BugReport::ranges_iterator, BugReport::ranges_iterator>
1257 BugReport::getRanges() const { in getRanges()
1267 SourceLocation BugReport::getLocation() const { in getLocation()
[all …]
DExprEngine.cpp3247 const BugReport &R = **EQ.begin(); in ViewGraph()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCheckerContext.h157 void EmitReport(BugReport *R) { in EmitReport()
/external/clang/tools/scan-view/
DReporter.py16 class BugReport: class
DScanView.py324 bug = Reporter.BugReport(title, description, files)