HomeSort by relevance Sort by last modified time
    Searched refs:BugReport (Results 1 - 25 of 48) 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);
112 /// the BugReport.
113 static void registerStatementVarDecls(BugReport &BR, const Stmt *S);
125 BugReport &BR);
148 BugReport &BR)
    [all...]
BugReporter.h 41 class BugReport;
53 class BugReport : public llvm::ilist_node<BugReport> {
144 BugReport(BugType& bt, StringRef desc, const ExplodedNode *errornode)
148 BugReport(BugType& bt, StringRef shortDesc, StringRef desc,
154 BugReport(BugType& bt, StringRef desc, PathDiagnosticLocation l)
159 /// \brief Create a BugReport with a custom uniqueing location.
166 BugReport(BugType& bt, StringRef desc, const ExplodedNode *errornode,
174 virtual ~BugReport();
190 /// when generating a PathDiagnostic from this BugReport
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCAtSyncChecker.cpp 50 BugReport *report =
51 new BugReport(*BT_undef, BT_undef->getDescription(), N);
73 BugReport *report =
74 new BugReport(*BT_null, BT_null->getDescription(), N);
NonNullParamChecker.cpp 38 BugReport *genReportNullAttrNonNull(const ExplodedNode *ErrorN,
40 BugReport *genReportReferenceToNullPointer(const ExplodedNode *ErrorN,
124 BugReport *R = 0;
152 BugReport *NonNullParamChecker::genReportNullAttrNonNull(
156 // the BugReport is passed to 'EmitWarning'.
162 BugReport *R = new BugReport(*BTAttrNonNull,
171 BugReport *NonNullParamChecker::genReportReferenceToNullPointer(
176 BugReport *R = new BugReport(*BTNullRefArg
    [all...]
FixedAddressChecker.cpp 59 BugReport *R = new BugReport(*BT, BT->getDescription(), N);
NSAutoreleasePoolChecker.cpp 71 BugReport *Report = new BugReport(*BT, "Use -drain instead of -release when "
TaintTesterChecker.cpp 53 BugReport *report = new BugReport(*BT, "tainted",N);
UndefinedArraySubscriptChecker.cpp 43 BugReport *R = new BugReport(*BT, BT->getName(), N);
ExprInspectionChecker.cpp 96 BugReport *R = new BugReport(*BT, getArgumentValueString(CE, C), N);
116 BugReport *R = new BugReport(*BT, getArgumentValueString(CE, C), N);
ArrayBoundChecker.cpp 77 BugReport *report =
78 new BugReport(*BT, BT->getDescription(), N);
CastToStructChecker.cpp 65 BugReport *R = new BugReport(*BT,BT->getDescription(), N);
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 77 BugReport *report = new BugReport(*BT, OS.str(), N);
UndefinedAssignmentChecker.cpp 78 BugReport *R = new BugReport(*BT, str, N);
PthreadLockChecker.cpp 109 BugReport *report = new BugReport(*BT_doublelock,
172 BugReport *report = new BugReport(*BT_lor,
CastSizeChecker.cpp 75 BugReport *R = new BugReport(*BT, BT->getDescription(),
DivZeroChecker.cpp 42 BugReport *R = new BugReport(*BT, Msg, N);
ReturnUndefChecker.cpp 78 BugReport *Report = new BugReport(BT, BT.getDescription(), N);
UndefBranchChecker.cpp 101 BugReport *R = new BugReport(*BT, BT->getDescription(), N);
UndefCapturedBlockVarChecker.cpp 91 BugReport *R = new BugReport(*BT, os.str(), N);
MacOSKeychainAPIChecker.cpp 105 BugReport *generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
123 void markInteresting(BugReport *R, const AllocationPair &AP) const {
129 /// BugReport path. For example, showing the allocation site of the leaked
150 BugReport &BR);
271 BugReport *Report = new BugReport(*BT, os.str(), N);
312 BugReport *Report = new BugReport(*BT, os.str(), N);
364 BugReport *Report = new BugReport(*BT
    [all...]
CallAndMessageChecker.cpp 76 BugReport *R = new BugReport(*BT, BT->getName(), N);
125 BugReport *R = new BugReport(*BT, Desc, N);
208 BugReport *R = new BugReport(*BT, os.str(), N);
337 BugReport *R = new BugReport(*BT, BT->getName(), N);
381 BugReport *report = new BugReport(*BT_msg_ret, os.str(), N)
    [all...]
  /external/clang/examples/analyzer-plugin/
MainCallChecker.cpp 40 BugReport *report = new BugReport(*BT, BT->getName(), N);

Completed in 451 milliseconds

1 2