Lines Matching full:template
5 template<unsigned I, typename ...Types>
8 template<typename ...Types>
12 template void f0(X<0>);
13 template void f0(X<1, int&>);
14 template void f0(X<2, int&, short&>);
17 template void f0<float>(X<1, float&>);
18 template void f0<double>(X<1, double&>);
21 template void f0<char, unsigned char>(X<2, char&, unsigned char&>);
22 template void f0<signed char, char>(X<2, signed char&, char&>);
25 // template void f0<short, int>(X<3, short&, int&, long&>);
29 template<char...> struct char_values {
33 template<int C1, char C3>
40 template<int...> struct int_values {
44 template<unsigned char C1, unsigned char C3>