Home | History | Annotate | Download | only in SemaTemplate

Lines Matching full:template

4 template<typename T>
6 template<typename U> A<T> operator+(U);
9 template<int Value, typename T> bool operator==(A<T>, A<T>);
11 template<> bool operator==<0>(A<int>, A<int>);
21 template<typename T>
23 const A<T> &atr = at.template operator+<T>(x);
24 const A<T> &atr2 = at.A::template operator+<T>(x);
25 // FIXME: unrelated template-name instantiation issue
26 // const A<T> &atr3 = at.template A<T>::template operator+<T>(x);
29 template void test_op_template<float>(A<float>, float);