Searched defs:ExportedVarTmpl (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Ddllexport.cpp155 template<typename T> __declspec(dllexport) int ExportedVarTmpl = 1; variable
158 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
160 USEVAR(ExportedVarTmpl<ImplicitInst_Exported>)
163 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
165 extern template int ExportedVarTmpl<ExplicitDecl_Exported>;
166 template int ExportedVarTmpl<ExplicitDecl_Exported>; variable
169 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
171 template __declspec(dllexport) int ExportedVarTmpl<ExplicitInst_Exported>; variable
174 // MSC-DAG: @"\01??$ExportedVarTmpl@UExplicitSpec_Exported@@@@3HA" = dllexport global i32 0, align 4
176 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Exporte variable
180 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Def_Exported> = 1; variable
186 template<> int ExportedVarTmpl<ExplicitSpec_NotExported>; variable
[all...]
/external/clang/test/SemaCXX/
H A Ddllexport.cpp130 template<typename T> __declspec(dllexport) int ExportedVarTmpl = 1; variable
133 int useVarTmpl() { return ExportedVarTmpl<ImplicitInst_Exported>; }
136 extern template int ExportedVarTmpl<ExplicitDecl_Exported>;
137 template int ExportedVarTmpl<ExplicitDecl_Exported>; variable
140 template __declspec(dllexport) int ExportedVarTmpl<ExplicitInst_Exported>; variable
143 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Exported>; variable
144 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Def_Exported> = 1; variable
148 template<> int ExportedVarTmpl<ExplicitSpec_NotExported>; variable

Completed in 267 milliseconds