Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:super

35    [super MyDealloc];
40 [super MyDealloc];
41 } // expected-warning {{method possibly missing a [super XXX] call}}
43 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] call}}
44 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDeallocMeth] call}}
45 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}}
47 + (void)registerClass:(id)name {} // expected-warning {{method possibly missing a [super registerClass:] call}}
54 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] call}}
55 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDeallocMeth] call}}
56 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}}
65 - (void) MyDeallocMeth {} // expected-warning {{method possibly missing a [super MyDeallocMeth] call}}
66 - (void) AnnotMyDeallocMeth{} // expected-warning {{method possibly missing a [super AnnotMyDeallocMeth] call}}
67 - (void) AnnotMeth{}; // expected-warning {{method possibly missing a [super AnnotMeth] call}}
68 - (void) AnnotMyDeallocMethCAT{}; // expected-warning {{method possibly missing a [super AnnotMyDeallocMethCAT] call}}
69 - (void) AnnotMethCAT {}; // expected-warning {{method possibly missing a [super AnnotMethCAT] call}}
79 [super MyDeallocMeth]; // no-warning
84 [super registerClass:name]; // no-warning
104 } // expected-warning {{method possibly missing a [super someMethodRequiringSuper] call}}
110 } // expected-warning {{method possibly missing a [super someActionRequiringSuper] call}}