reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | // RUN: %clang_analyze_cc1 %s \ // RUN: -analyzer-checker=core \ // RUN: -analyzer-checker=nullability.NullReturnedFromNonnull // RUN: %clang_analyze_cc1 %s \ // RUN: -analyzer-checker=osx.cocoa.RetainCount \ // RUN: -analyzer-list-enabled-checkers \ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-IMPLICITLY-ENABLED // CHECK-IMPLICITLY-ENABLED: osx.cocoa.RetainCountBase // CHECK-IMPLICITLY-ENABLED: osx.cocoa.RetainCount // RUN: %clang_analyze_cc1 %s \ // RUN: -analyzer-checker=osx.cocoa.RetainCount \ // RUN: -analyzer-disable-checker=osx.cocoa.RetainCountBase \ // RUN: -analyzer-list-enabled-checkers \ // RUN: 2>&1 | FileCheck %s -check-prefix=CHECK-IMPLICITLY-DISABLED // CHECK-IMPLICITLY-DISABLED-NOT: osx.cocoa.RetainCountBase // CHECK-IMPLICITLY-DISABLED-NOT: osx.cocoa.RetainCount |