Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:Ts

195 template<class ... Ts> void vfun(Ts ... ) { }
233 template<class ... Ts> void print(Ts ...) { }
501 template<class ... Ts> void print(Ts ... ts) { }
503 template<class ... Ts> auto fooV(Ts ... ts) {
514 N(first<Ts...>{});
519 L(L, ts...);
520 print("ts = ", ts..., "\n");
570 template<class ... Ts> void print(Ts ... ts) { }
574 template<class ... Ts> int fooV(Ts ... ts) {
585 N(first<Ts...>{});
590 L(L, ts...);
591 print("ts = ", ts..., "\n");
599 template<class ... Ts> int fooV(Ts ... ts) {
610 N(first<Ts...>{});
615 auto M = L(L, ts...);
616 decltype(L(L, ts...)) (*fp)(decltype(L), decltype(ts) ...) = L;
617 void (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...);
630 N(first<Ts...>{});
636 auto M = L(L, ts...);
637 decltype(L(L, ts...)) (*fp)(decltype(L), decltype(ts) ...) = L;
638 fp(L, ts...);
639 decltype(L(L, ts...)(L, ts...)) (*fp2)(decltype(L), decltype(ts) ...) = L(L, ts...);
640 fp2 = fp(L, ts...);
641 void (*fp3)(char) = fp2(L, ts...);
775 template<class ... Ts> auto vfun(Ts&& ... ts) {
776 print(ts...);
777 return FirstArg(ts...);