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

References

tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
   50   switch (getKind()) {
  734   if (V.getKind() == RefVal::Released) {
  736     hasErr = V.getKind();
  749       switch (V.getKind()) {
  759           hasErr = V.getKind();
  765       if (V.getKind() == RefVal::Owned) {
  785       switch (V.getKind()) {
  798       switch (V.getKind()) {
  833             hasErr = V.getKind();
  998   switch (X.getKind()) {
 1224   if (V.getKind() == RefVal::ReturnedOwned)
 1238       if (V.getKind() == RefVal::ReturnedOwned) {
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
  115     assert(getKind() == k && "not enough bits for the kind");
  153     return getKind() == Owned;
  157     return getKind() == NotOwned;
  161     return getKind() == ReturnedOwned;
  165     return getKind() == ReturnedNotOwned;
  185     return RefVal(getKind(), getObjKind(), getCount() - i,
  190     return RefVal(getKind(), getObjKind(), getCount() + i,
  200     return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount()+1,
  206     return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(),
  212     return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(),
  218     return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt &&
  218     return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt &&
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
  106     if (CurrV.getKind() == RefVal::Released) {
  115     switch (CurrV.getKind()) {
  760   if (RV->getKind() == RefVal::ErrorLeakReturned) {