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

References

tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
   48     Out << "Tracked " << T.getAsString() << " | ";
   53       Out << "Owned";
   55       if (cnt) Out << " (+ " << cnt << ")";
   60       Out << "NotOwned";
   62       if (cnt) Out << " (+ " << cnt << ")";
   67       Out << "ReturnedOwned";
   69       if (cnt) Out << " (+ " << cnt << ")";
   74       Out << "ReturnedNotOwned";
   76       if (cnt) Out << " (+ " << cnt << ")";
   81       Out << "Released";
   85       Out << "-dealloc (not-owned)";
   89       Out << "Leaked";
   93       Out << "Leaked (Bad naming)";
   97       Out << "Use-After-Release [ERROR]";
  101       Out << "Release of Not-Owned [ERROR]";
  105       Out << "Over-autoreleased";
  109       Out << "Non-owned object returned instead of owned";
  117     Out << " [direct ivar access]";
  120     Out << " [released after direct ivar access]";
  124     Out << " [autorelease -" << ACnt << ']';