reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
 1214   unsigned ACnt = V.getAutoreleaseCount();
 1269     if (V.getAutoreleaseCount() > 1)
 1270       os << V.getAutoreleaseCount() << " times but the object ";
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
  186                   getAutoreleaseCount(), getType(), getIvarAccessHistory());
  191                   getAutoreleaseCount(), getType(), getIvarAccessHistory());
  195     return RefVal(k, getObjKind(), getCount(), getAutoreleaseCount(),
  200     return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount()+1,
  206     return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(),
  212     return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(),
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
  120         if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount())
  120         if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount())
  123         assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount());
  123         assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount());
  149       if (CurrV.getAutoreleaseCount())