Lines Matching refs:object
14 void testMethod1(id object) {
15 [object method1];
18 void testMethod2(id object) {
19 [object method2:1];
22 void testMethod4(id object) {
23 …[object method4]; // expected-warning{{instance method '-method4' not found (return type defaults …
26 void testMethod5(id object, D* d) {
27 [object method5:d];
34 void testMethod1Again(id object) {
35 [object method1];
38 void testMethod2Again(id object) {
39 [object method2:1]; // expected-warning{{multiple methods named 'method2:' found}}
42 void testMethod3(id object) {
43 …[object method3]; // expected-warning{{instance method '-method3' not found (return type defaults …
48 void testMethod3Again(id object) {
49 char *str = [object method3]; // okay: only found in MethodPoolB.Sub
52 void testMethod6(id object) {
53 [object method6];
58 void testMethod3AgainAgain(id object) {
59 [object method3]; // expected-warning{{multiple methods named 'method3' found}}
64 void testMethod4Again(id object) {
65 [object method4];
68 void testMethod5Again(id object, D* d) {
69 [object method5:d];