HomeSort by relevance Sort by last modified time
    Searched full:template (Results 226 - 250 of 20596) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p6.cpp 3 // Test class template partial specializations of member templates.
4 template<typename T>
6 template<typename U> struct Inner0 {
10 template<typename U> struct Inner0<U*> {
15 template<typename T> template<typename U>
24 // Make sure we can provide out-of-line class template partial specializations
26 template<class T> struct A {
28 template<class T2> struct B;
33 template<class T> template<class T2> struct A<T>::C::B<T2*> { };
    [all...]
  /external/clang/test/SemaTemplate/
member-function-template.cpp 4 template<typename T> T& f0(T);
11 template<typename T> T& f1(T);
12 template<typename T, typename U> U& f1(T, U);
50 class A { template <class x> x a(x z) { return z+y; } int y; };
54 template <typename T>
65 template<typename T>
67 template<typename U> U& get();
70 template<typename T> struct X2; // expected-note{{here}}
74 (void)x2->get<float>(); // expected-error{{implicit instantiation of undefined template}}
77 // Instantiation of template template parameters in a member functio
    [all...]