Home | History | Annotate | Download | only in Checkers

Lines Matching defs:Count

11 //  a reference count checker for Core Foundation and Cocoa on (Mac OS X).
215 unsigned Count = 1) {
216 return RefVal(Owned, o, Count, 0, t);
220 unsigned Count = 0) {
221 return RefVal(NotOwned, o, Count, 0, t);
1068 // allowing it be used even after its local retain count drops to 0.
1262 // count checker.
1277 // should stop tracking the reference count for the receiver. This is
1278 // because the reference count is quite possibly handled by a delegate
1629 return "Incorrect decrement of the reference count of an object that is "
1670 return "Object with a +0 retain count returned to caller where a +1 "
1671 "(owning) retain count is expected";
1882 os << "+1 retain count";
1892 os << "+0 retain count";
1942 // Determine if the object's reference count was pushed to zero.
1961 // Determine if the object's reference count was pushed to zero.
1965 << "' decrements an object's retain count and registers the "
1970 os << "Since it now has a 0 retain count the object can be "
1974 os << "An object must have a 0 retain count to be garbage collected. "
1975 "After this call its retain count is +" << CurrV.getCount()
2003 os << "Reference count decremented.";
2005 os << "Reference count incremented.";
2007 if (unsigned Count = CurrV.getCount())
2008 os << " The object now has a +" << Count << " retain count.";
2013 "retain count reaches 0 again.";
2024 "count transferred to caller)";
2028 os << "Object returned to caller with a +0 retain count";
2184 // Get the retain count.
2213 "count since they expect the object to be managed by the garbage "
2218 "count of +" << RV->getCount();
2498 // Scan the BlockDecRefExprs for any object the retain count checker
2515 // and in implicit increment/decrement of a retain count.
2985 // Handle the return values of retain-count-related functions.
3038 unsigned Count = C.getCurrentBlockCount();
3039 SVal RetVal = SVB.getConjuredSymbolVal(0, CE, ResultTy, Count);
3053 unsigned Count = C.getCurrentBlockCount();
3054 state = state->invalidateRegions(ArgRegion, CE, Count);
3080 // Get the reference count binding (if any).
3085 // Change the reference count.
3147 // follow Cocoa retain-count conventions, not just those with special
3320 if (WhitelistedSymbols.count(sym))
3322 // Remove any existing reference-count binding.
3380 os << "but the object has a +" << V.getCount() << " retain count";