Home | History | Annotate | Download | only in SemaTemplate

Lines Matching full:void

6   void f(T t);
9 void g(T t);
14 void X0<T>::f(T t) {
23 void X0<T>::Inner::g(T t) {
27 void test_intptr(X0<int*> xi, X0<int*>::Inner xii) {
34 void test_longptr(X0<long*> xl, X0<long*>::Inner xli) {
44 void f(T t) { t += 2; }
46 void g(T t);
50 void X1<T>::g(T t) {
54 extern template class X1<void*>;
56 void g_X1(X1<void*> x1, void *ptr) {
60 extern template void X1<const void*>::g(const void*);
62 void g_X1_2(X1<const void *> x1, const void *ptr) {