Home
last modified time | relevance | path

Searched refs:EnhancedBugReport (Results 1 – 22 of 22) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DObjCAtSyncChecker.cpp50 EnhancedBugReport *report = in checkPreStmt()
51 new EnhancedBugReport(*BT_undef, BT_undef->getDescription(), N); in checkPreStmt()
73 EnhancedBugReport *report = in checkPreStmt()
74 new EnhancedBugReport(*BT_null, BT_null->getDescription(), N); in checkPreStmt()
DCallAndMessageChecker.cpp66 EnhancedBugReport *R = new EnhancedBugReport(*BT, BT->getName(), N); in EmitBadCall()
94 EnhancedBugReport *R = new EnhancedBugReport(*BT, BT->getName(), N); in PreVisitProcessArg()
176 EnhancedBugReport *R = new EnhancedBugReport(*BT, os.str(), N); in PreVisitProcessArg()
229 EnhancedBugReport *R = in checkPreObjCMessage()
230 new EnhancedBugReport(*BT_msg_undef, BT_msg_undef->getName(), N); in checkPreObjCMessage()
274 EnhancedBugReport *report = new EnhancedBugReport(*BT_msg_ret, os.str(), N); in emitNilReceiverBug()
DVLASizeChecker.cpp65 EnhancedBugReport *report = in checkPreStmt()
66 new EnhancedBugReport(*BT_undef, BT_undef->getName(), N); in checkPreStmt()
90 EnhancedBugReport *report = in checkPreStmt()
91 new EnhancedBugReport(*BT_zero, BT_zero->getName(), N); in checkPreStmt()
DDereferenceChecker.cpp76 EnhancedBugReport *report = in checkLocation()
77 new EnhancedBugReport(*BT_undef, BT_undef->getDescription(), N); in checkLocation()
160 EnhancedBugReport *report = in checkLocation()
161 new EnhancedBugReport(*BT_null, in checkLocation()
DPthreadLockChecker.cpp122 EnhancedBugReport *report = new EnhancedBugReport(*BT_doublelock, in AcquireLock()
186 EnhancedBugReport *report = new EnhancedBugReport(*BT_lor, in ReleaseLock()
DUndefinedArraySubscriptChecker.cpp43 EnhancedBugReport *R = new EnhancedBugReport(*BT, BT->getName(), N); in checkPreStmt()
DReturnUndefChecker.cpp53 EnhancedBugReport *report = in checkPreStmt()
54 new EnhancedBugReport(*BT, BT->getDescription(), N); in checkPreStmt()
DDivZeroChecker.cpp63 EnhancedBugReport *R = in checkPreStmt()
64 new EnhancedBugReport(*BT, BT->getDescription(), N); in checkPreStmt()
DUndefinedAssignmentChecker.cpp77 EnhancedBugReport *R = new EnhancedBugReport(*BT, str, N); in checkBind()
DUndefResultChecker.cpp74 EnhancedBugReport *report = new EnhancedBugReport(*BT, OS.str(), N); in checkPostStmt()
DUndefCapturedBlockVarChecker.cpp90 EnhancedBugReport *R = new EnhancedBugReport(*BT, os.str(), N); in checkPostStmt()
DUndefBranchChecker.cpp102 EnhancedBugReport *R = new EnhancedBugReport(*BT, BT->getDescription(),N); in checkBranchCondition()
DAttrNonNullChecker.cpp103 EnhancedBugReport *R = in checkPreStmt()
104 new EnhancedBugReport(*BT, in checkPreStmt()
DIteratorsChecker.cpp413 EnhancedBugReport *R = new EnhancedBugReport(*BT_Invalid, msg, N); in checkExpr()
425 EnhancedBugReport *R = new EnhancedBugReport(*BT_Undefined, in checkExpr()
494 EnhancedBugReport *R = new EnhancedBugReport(*BT_Incompatible, in checkPreStmt()
DUnixAPIChecker.cpp205 EnhancedBugReport *report = in CheckMallocZero()
206 new EnhancedBugReport(*BT_mallocZero, "Call to 'malloc' has an allocation" in CheckMallocZero()
DNSErrorChecker.cpp280 EnhancedBugReport *report = new EnhancedBugReport(*bug, os.str(), in checkEvent()
DObjCSelfInitChecker.cpp182 EnhancedBugReport *report = in checkForInvalidSelf()
183 new EnhancedBugReport(*new InitSelfBug(), errorStr, N); in checkForInvalidSelf()
DBasicObjCFoundationChecks.cpp415 EnhancedBugReport *report = new EnhancedBugReport(*BT, description, N); in checkPreStmt()
DCStringChecker.cpp203 EnhancedBugReport *report = new EnhancedBugReport(*BT, os.str(), N); in checkNonNull()
647 EnhancedBugReport *report = new EnhancedBugReport(*BT_NotCString, in getCStringLength()
708 EnhancedBugReport *report = new EnhancedBugReport(*BT_NotCString, in getCStringLength()
DIdempotentOperationChecker.cpp410 EnhancedBugReport *report = new EnhancedBugReport(*BT, os.str(), *I); in checkEndAnalysis()
DMallocChecker.cpp487 EnhancedBugReport *R = new EnhancedBugReport(*BT_BadFree, os.str(), N); in ReportBadFree()
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h236 class EnhancedBugReport : public RangedBugReport {
246 EnhancedBugReport(BugType& D, llvm::StringRef description, in EnhancedBugReport() function
250 EnhancedBugReport(BugType& D, llvm::StringRef shortDescription, in EnhancedBugReport() function
254 ~EnhancedBugReport() {} in ~EnhancedBugReport()