HomeSort by relevance Sort by last modified time
    Searched refs:exportedFuncTmpl (Results 1 - 2 of 2) sorted by null

  /external/clang/test/CodeGenCXX/
dllexport.cpp 352 template<typename T> __declspec(dllexport) void exportedFuncTmpl() {}
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_Exported>() {
    [all...]
  /external/clang/test/SemaCXX/
dllexport.cpp 293 template<typename T> __declspec(dllexport) void exportedFuncTmpl() {}
297 void useFunTmplDef() { exportedFuncTmpl<ImplicitInst_Exported>(); }
300 extern template void exportedFuncTmpl<ExplicitDecl_Exported>();
301 template void exportedFuncTmpl<ExplicitDecl_Exported>();
304 template void exportedFuncTmpl<ExplicitInst_Exported>();
307 template<> __declspec(dllexport) void exportedFuncTmpl<ExplicitSpec_Exported>();
308 template<> __declspec(dllexport) void exportedFuncTmpl<ExplicitSpec_Def_Exported>() {}
309 template<> __declspec(dllexport) inline void exportedFuncTmpl<ExplicitSpec_InlineDef_Exported>() {}
313 template<> void exportedFuncTmpl<ExplicitSpec_NotExported>() {}
    [all...]

Completed in 205 milliseconds