Lines Matching refs:dealloc
18 - (void)dealloc; method
25 // Do not warn about missing -dealloc method. Not enough context to know
37 // Do not warn about missing -dealloc method. These properties are not
55 // Warn about missing -dealloc method.
62 // expected-warning@+2{{'MissingDeallocWithCopyProperty' lacks a 'dealloc' instance method but must…
72 // expected-warning@+2{{'MissingDeallocWithRetainProperty' lacks a 'dealloc' instance method but mu…
83 // expected-warning@+2{{'MissingDeallocWithMultipleProperties' lacks a 'dealloc' instance method bu…
95 // expected-warning@+2{{'MissingDeallocWithIVarAndRetainProperty' lacks a 'dealloc' instance method…
105 // expected-warning@+2{{'MissingDeallocWithReadOnlyRetainedProperty' lacks a 'dealloc' instance met…
147 // - Disable the missing -dealloc check for classes that subclass SenTestCase
188 // Don't crash on calls to dealloc as a class method.
193 - (void)dealloc { method
194 [DeallocingClass dealloc]; // FIXME: Should we warn on this specifically?
197 // expected-warning@-2{{method possibly missing a [super dealloc] call}}