Home | History | Annotate | Download | only in PCH

Lines Matching full:template

15 // Test with pch and delayed template parsing.
16 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fdelayed-template-parsing -fexceptions -x c++-header -emit-pch -o %t %S/cxx-templates.h
17 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fdelayed-template-parsing -fexceptions -include-pch %t -verify %s -ast-dump -o -
18 // RUN: %clang_cc1 -std=c++11 -triple %itanium_abi_triple -fcxx-exceptions -fdelayed-template-parsing -fexceptions -include-pch %t %s -emit-llvm -o - -DNO_ERRORS | FileCheck %s
26 template <typename T>
49 template struct S4<int>;
54 template void f<X>(X*);
60 template<typename T, char Converter(T)> static inline unsigned createHash(const T*, unsigned) {
76 template< typename D >
108 template int local_extern::f<int[]>(); // expected-note {{in instantiation of}}
110 template int local_extern::g<int[]>();