Lines Matching refs:method

20 - (void)otherRootDirect __attribute__((objc_direct)); // expected-note {{direct method 'otherRootDi…
21 + (void)otherClassRootDirect __attribute__((objc_direct)); // expected-note {{direct method 'otherC…
22 + (void)otherOtherClassRootDirect __attribute__((objc_direct)); // expected-note {{direct method 'o…
72 - (void)rootDirect; // expected-error {{cannot override a method that is declared di…
73 + (void)classRootDirect; // expected-error {{cannot override a method that is declared di…
74 - (void)rootExtensionDirect; // expected-error {{cannot override a method that is declared di…
75 + (void)classRootExtensionDirect; // expected-error {{cannot override a method that is declared di…
76 - (void)rootExtensionDirect2; // expected-error {{cannot override a method that is declared di…
77 + (void)classRootExtensionDirect2; // expected-error {{cannot override a method that is declared di…
78 - (void)rootCategoryDirect; // expected-error {{cannot override a method that is declared di…
79 + (void)classRootCategoryDirect; // expected-error {{cannot override a method that is declared di…
80 - (void)rootCategoryDirect2; // expected-error {{cannot override a method that is declared di…
81 + (void)classRootCategoryDirect2; // expected-error {{cannot override a method that is declared di…
98 + (void)someRootDirectMethod { // expected-note {{direct method 'someRootDirectMethod' declared her…
101 …[self someRootDirectMethod]; // expected-error {{messaging a Class with a method that is possibly …
117 - (void)notDirectInIface __attribute__((objc_direct)) // expected-error {{direct method implementat…
120 + (void)classNotDirectInIface __attribute__((objc_direct)) // expected-error {{direct method implem…
123 - (void)direct1 { // expected-note {{direct method 'direct1' declared here}}
125 - (void)direct2 { // expected-note {{direct method 'direct2' declared here}}
131 - (id)directMismatch2; // expected-note {{method 'directMismatch2' declared here}}
136 - (void)directMismatch2 __attribute__((objc_direct)); // expected-note {{method 'directMismatch2' d…
144 [super otherRootDirect]; // expected-error {{messaging super with a direct method}}
147 [super otherOtherClassRootDirect]; // expected-error {{messaging super with a direct method}}
163 …[cls otherClassRootDirect]; // expected-error {{messaging a Class with a method that is possibly d…
164 …[obj direct1]; // expected-error {{messaging unqualified id with a method that is pos…