Home | History | Annotate | Download | only in SemaTemplate

Lines Matching defs:X1

42 class X1 {
50 void X1<T>::g(T t) {
54 extern template class X1<void*>;
56 void g_X1(X1<void*> x1, void *ptr) {
57 x1.g(ptr);
60 extern template void X1<const void*>::g(const void*);
62 void g_X1_2(X1<const void *> x1, const void *ptr) {
63 x1.g(ptr);