Home | History | Annotate | Download | only in dcl.align

Lines Matching full:template

51 template<int N, int M, typename T>
56 template struct X<1, 1, char>;
57 template struct X<4, 1, char>;
58 template struct X<1, 2, char>; // expected-note {{instantiation}}
59 template struct X<1, 1, short>; // expected-note {{instantiation}}
60 template struct X<2, 1, short>; // expected-note {{instantiation}}
61 template struct X<2, 2, short>;
62 template struct X<16, 8, S1>;
63 template struct X<4, 4, S1>; // expected-note {{instantiation}}
65 template<int N, typename T>
69 template struct Y<1, char>;
70 template struct Y<2, char>;
71 template struct Y<1, short>; // expected-note {{instantiation}}
72 template struct Y<2, short>;
74 template<int N, typename T>
78 template void f<1, char>();
79 template void f<2, char>();
80 template void f<1, short>(); // expected-note {{instantiation}}
81 template void f<2, short>();