Searched refs:getAutoreleaseCount (Results 1 – 3 of 3) sorted by relevance
| /src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.h | 127 unsigned getAutoreleaseCount() const { return ACnt; } in getAutoreleaseCount() function 185 getAutoreleaseCount(), getType(), getIvarAccessHistory()); 190 getAutoreleaseCount(), getType(), getIvarAccessHistory()); 194 return RefVal(k, getObjKind(), getCount(), getAutoreleaseCount(), 199 return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount()+1, in autorelease() 205 return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(), in withIvarAccess() 211 return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(), in releaseViaIvar()
|
| H A D | RetainCountDiagnostics.cpp | 121 if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount()) in shouldGenerateNote() 124 assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount()); in shouldGenerateNote() 150 if (CurrV.getAutoreleaseCount()) in shouldGenerateNote()
|
| H A D | RetainCountChecker.cpp | 1214 unsigned ACnt = V.getAutoreleaseCount(); in handleAutoreleaseCounts() 1269 if (V.getAutoreleaseCount() > 1) in handleAutoreleaseCounts() 1270 os << V.getAutoreleaseCount() << " times but the object "; in handleAutoreleaseCounts()
|