Searched refs:exportedFuncTmpl (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Ddllexport.cpp352 template<typename T> __declspec(dllexport) void exportedFuncTmpl() {} function
355 // MSC-DAG: define weak_odr dllexport void @"\01??$exportedFuncTmpl@UImplicitInst_Exported@@@@YAXXZ"()
357 USE(exportedFuncTmpl<ImplicitInst_Exported>)
360 // MSC-DAG: define weak_odr dllexport void @"\01??$exportedFuncTmpl@UExplicitDecl_Exported@@@@YAXXZ"()
362 extern template void exportedFuncTmpl<ExplicitDecl_Exported>();
363 template void exportedFuncTmpl<ExplicitDecl_Exported>();
366 // MSC-DAG: define weak_odr dllexport void @"\01??$exportedFuncTmpl@UExplicitInst_Exported@@@@YAXXZ"()
368 template void exportedFuncTmpl<ExplicitInst_Exported>();
371 // MSC-DAG: define dllexport void @"\01??$exportedFuncTmpl@UExplicitSpec_Def_Exported@@@@YAXXZ"()
373 template<> __declspec(dllexport) void exportedFuncTmpl<ExplicitSpec_Def_Exporte function
377 template<> __declspec(dllexport) inline void exportedFuncTmpl<ExplicitSpec_InlineDef_Exported>() {} function
383 template<> void exportedFuncTmpl<ExplicitSpec_NotExported>() {} function
[all...]
/external/clang/test/SemaCXX/
H A Ddllexport.cpp289 template<typename T> __declspec(dllexport) void exportedFuncTmpl() {} function
293 void useFunTmplDef() { exportedFuncTmpl<ImplicitInst_Exported>(); }
296 extern template void exportedFuncTmpl<ExplicitDecl_Exported>();
297 template void exportedFuncTmpl<ExplicitDecl_Exported>();
300 template void exportedFuncTmpl<ExplicitInst_Exported>();
303 template<> __declspec(dllexport) void exportedFuncTmpl<ExplicitSpec_Exported>();
304 template<> __declspec(dllexport) void exportedFuncTmpl<ExplicitSpec_Def_Exported>() {} function
305 template<> __declspec(dllexport) inline void exportedFuncTmpl<ExplicitSpec_InlineDef_Exported>() {} function
309 template<> void exportedFuncTmpl<ExplicitSpec_NotExported>() {} function

Completed in 149 milliseconds