HomeSort by relevance Sort by last modified time
    Searched refs:BugReport (Results 1 - 25 of 47) sorted by null

1 2

  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 25 class BugReport;
57 /// BugReport while processing a node.
61 BugReport &BR) = 0;
67 /// Also note that at most one visitor of a BugReport should generate a
71 BugReport &BR);
78 BugReport &BR);
113 /// the BugReport.
114 static void registerStatementVarDecls(BugReport &BR, const Stmt *S);
129 BugReport &BR);
148 BugReport &BR)
    [all...]
BugReporter.h 40 class BugReport;
52 class BugReport : public llvm::ilist_node<BugReport> {
106 BugReport(BugType& bt, StringRef desc, const ExplodedNode *errornode)
110 BugReport(BugType& bt, StringRef shortDesc, StringRef desc,
115 BugReport(BugType& bt, StringRef desc, PathDiagnosticLocation l)
119 /// \brief Create a BugReport with a custom uniqueing location.
126 BugReport(BugType& bt, StringRef desc, const ExplodedNode *errornode,
132 virtual ~BugReport();
190 /// They should be at the same source code line as the BugReport location
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCAtSyncChecker.cpp 51 BugReport *report =
52 new BugReport(*BT_undef, BT_undef->getDescription(), N);
75 BugReport *report =
76 new BugReport(*BT_null, BT_null->getDescription(), N);
FixedAddressChecker.cpp 59 BugReport *R = new BugReport(*BT, BT->getDescription(), N);
ReturnUndefChecker.cpp 53 BugReport *report =
54 new BugReport(*BT, BT->getDescription(), N);
TaintTesterChecker.cpp 53 BugReport *report = new BugReport(*BT, "tainted",N);
UndefinedArraySubscriptChecker.cpp 43 BugReport *R = new BugReport(*BT, BT->getName(), N);
ArrayBoundChecker.cpp 77 BugReport *report =
78 new BugReport(*BT, BT->getDescription(), N);
CastToStructChecker.cpp 65 BugReport *R = new BugReport(*BT,BT->getDescription(), N);
NSAutoreleasePoolChecker.cpp 80 BugReport *Report = new BugReport(*BT, "Use -drain instead of -release when "
PointerArithChecker.cpp 60 BugReport *R = new BugReport(*BT, BT->getDescription(), N);
PointerSubChecker.cpp 68 BugReport *R = new BugReport(*BT, BT->getDescription(), N);
ReturnPointerRangeChecker.cpp 81 BugReport *report =
82 new BugReport(*BT, BT->getDescription(), N);
UndefResultChecker.cpp 76 BugReport *report = new BugReport(*BT, OS.str(), N);
UndefinedAssignmentChecker.cpp 78 BugReport *R = new BugReport(*BT, str, N);
PthreadLockChecker.cpp 117 BugReport *report = new BugReport(*BT_doublelock,
180 BugReport *report = new BugReport(*BT_lor,
CastSizeChecker.cpp 75 BugReport *R = new BugReport(*BT, BT->getDescription(),
DivZeroChecker.cpp 42 BugReport *R =
43 new BugReport(*BT, Msg, N);
UndefBranchChecker.cpp 101 BugReport *R = new BugReport(*BT, BT->getDescription(), N);
UndefCapturedBlockVarChecker.cpp 93 BugReport *R = new BugReport(*BT, os.str(), N);
MacOSKeychainAPIChecker.cpp 108 BugReport *generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
126 void markInteresting(BugReport *R, const AllocationPair &AP) const {
132 /// BugReport path. For example, showing the allocation site of the leaked
153 BugReport &BR);
281 BugReport *Report = new BugReport(*BT, os.str(), N);
318 BugReport *Report = new BugReport(*BT, os.str(), N);
370 BugReport *Report = new BugReport(*BT
    [all...]
CallAndMessageChecker.cpp 73 BugReport *R = new BugReport(*BT, BT->getName(), N);
111 BugReport *R = new BugReport(*BT, BT->getName(), N);
197 BugReport *R = new BugReport(*BT, os.str(), N);
262 BugReport *R =
263 new BugReport(*BT, BT->getName(), N);
309 BugReport *report = new BugReport(*BT_msg_ret, os.str(), N)
    [all...]
AttrNonNullChecker.cpp 99 // the BugReport is passed to 'EmitWarning'.
104 BugReport *R =
105 new BugReport(*BT, "Null pointer passed as an argument to a "
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 40 BugReport *report = new BugReport(*BT, BT->getName(), N);
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 174 class NodeMapClosure : public BugReport::NodeResolver {
187 BugReport *R;
195 BugReport *r, NodeBackMap *Backmap,
206 BugReport *getBugReport() { return R; }
715 BugReport *R = PDB.getBugReport();
    [all...]

Completed in 574 milliseconds

1 2