Home | History | Annotate | Download | only in SemaObjCXX

Lines Matching full:template

19 template<unsigned N, typename T, typename U, typename V>
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}}
34 template<typename T, typename U, typename V>
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}}
46 template<typename T, typename U>
52 template void f3<Class>(id); // expected-note{{in instantiation of}}
53 template void f3<int>(id); // expected-note{{instantiation of}}
61 template<typename T>
66 template void f4(B*, int);
67 template void f4(B*, int*); // expected-note{{in instantiation of function template specialization 'f4<int *>' requested here}}
69 template<typename T, typename U>
74 template void f5(B*, int);
75 template void f5(B*, int*); // expected-note{{in instantiation of function template specialization 'f5<B *, int *>' requested here}}