HomeSort by: relevance | last modified time | path
    Searched refs:BugReport (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 121 class BugReport {
138 BugReport(Kind kind, const BugType &bt, StringRef desc)
139 : BugReport(kind, bt, "", desc) {}
141 BugReport(Kind K, const BugType &BT, StringRef ShortDescription,
147 virtual ~BugReport() = default;
220 /// They should be at the same source code line as the BugReport location.
253 class BasicBugReport : public BugReport {
259 : BugReport(Kind::Basic, bt, desc), Location(l) {}
261 static bool classof(const BugReport *R) {
291 class PathSensitiveBugReport : public BugReport {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
FuchsiaHandleChecker.cpp 376 std::vector<std::function<std::string(BugReport & BR)>> Notes;
385 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string {
401 Notes.push_back([RetSym, FuncDecl](BugReport &BR) -> std::string {
435 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string {
449 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string {
463 Notes.push_back([Handle, ParamDiagIdx](BugReport &BR) -> std::string {
NonNullParamChecker.cpp 182 std::unique_ptr<BugReport> R;
283 // the BugReport is passed to 'EmitWarning'.
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 242 void emitReport(std::unique_ptr<BugReport> R) {
253 /// @param Cb Callback with 'BugReporterContext &, BugReport &' parameters.
264 /// @param Cb Callback only with 'BugReport &' parameter.
307 /// @param Cb Callback with 'BugReport &' and 'llvm::raw_ostream &'.
  /src/external/apache2/llvm/dist/clang/tools/scan-view/share/
Reporter.py 8 __all__ = ['ReportFailure', 'BugReport', 'getReporters']
19 class BugReport(object):
ScanView.py 341 bug = Reporter.BugReport(title, description, files)
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 2106 // Methods for BugReport and subclasses.
2133 : BugReport(Kind::PathSensitive, bt, shortDesc, desc), ErrorNode(errorNode),
2247 "BugReport::markInteresting currently can only handle 2 different "
2306 "BugReport::getInterestingnessKind currently can only handle 2 different "
2489 /// Since the getErrorNode() or BugReport refers to the original ExplodedGraph,
2805 // Find the BugReport with the original location.
2871 void BugReporter::emitReport(std::unique_ptr<BugReport> R) {
2895 void PathSensitiveBugReporter::emitReport(std::unique_ptr<BugReport> R) {
2933 BugReport *PathSensitiveBugReporter::findReportInEquivalenceClass(
2934 BugReportEquivClass &EQ, SmallVectorImpl<BugReport *> &bugReports)
    [all...]

Completed in 24 milliseconds