Lines Matching defs:objc_object
10 typedef struct objc_object { struct
11 Class isa;
12 } *id;
16 A *get_an_A(unsigned);
17 id get_an_id(unsigned);
20 void f(U value, V value2) {
27 template void f<6, Class>(int, int); // expected-note{{in instantiation of}}
28 template void f<7, Class>(int*, int); // expected-note{{in instantiation of}}
29 template void f<8, Class>(int, double*); // expected-note{{in instantiation of}}
30 template void f<9, int>(int, int); // expected-note{{in instantiation of}}
35 void f2(T ptr, U value, V value2) {
40 template void f2(A*, int, int);
41 template void f2(A*, int*, int); // expected-note{{instantiation of}}
42 template void f2(A*, int, double*); // expected-note{{instantiation of}}
47 void f3(U ptr) {
52 template void f3<Class>(id); // expected-note{{in instantiation of}}
53 template void f3<int>(id); // expected-note{{instantiation of}}
56 @interface B interface