Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:template

3 template<int z>
10 test9<42>(a); // expected-note {{in instantiation of function template specialization 'test9<42>' requested here}}
13 template<typename T>
20 return test10(a, 42); // expected-note {{in instantiation of function template specialization 'test10<int>' requested here}}
23 template <int q>
26 template <int q, int o>
30 atest<31>(); // expected-note {{in instantiation of function template specialization 'atest<31>' requested here}}
33 atest2<31, 5>(); // expected-note {{in instantiation of function template specialization 'atest2<31, 5>' requested here}}
38 template<typename T> __attribute__((assume_aligned(sizeof(int(T()))))) T *f();
40 void *p = f<void>(); // expected-note {{in instantiation of function template specialization 'f<void>' requested here}}
44 template<typename T> __attribute__((assume_aligned(sizeof((int(T())))))) T *g();
46 void *p = g<void>(); // expected-note {{in instantiation of function template specialization 'g<void>' requested here}}
49 template <typename T, int o>
52 template <typename T, int o>
80 template <typename X>
85 atest5<s3>(); // expected-note {{in instantiation of function template specialization 'atest5<s3>' requested here}}