Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:ExportedStaticVar

630   template<typename T> __declspec(dllexport) static const int ExportedStaticVar = 1;
633 template<typename T> const int MemVarTmpl::ExportedStaticVar;
636 // MSC-DAG: @"\01??$ExportedStaticVar@UImplicitInst_Exported@@@MemVarTmpl@@2HB" = weak_odr dllexport constant i32 1, comdat, align 4
638 int useMemVarTmpl() { return MemVarTmpl::ExportedStaticVar<ImplicitInst_Exported>; }
642 // MSC-DAG: @"\01??$ExportedStaticVar@UExplicitDecl_Exported@@@MemVarTmpl@@2HB" = weak_odr dllexport constant i32 1, comdat, align 4
644 extern template const int MemVarTmpl::ExportedStaticVar<ExplicitDecl_Exported>;
645 template const int MemVarTmpl::ExportedStaticVar<ExplicitDecl_Exported>;
649 // MSC-DAG: @"\01??$ExportedStaticVar@UExplicitInst_Exported@@@MemVarTmpl@@2HB" = weak_odr dllexport constant i32 1, comdat, align 4
651 template const int MemVarTmpl::ExportedStaticVar<ExplicitInst_Exported>;
654 // MSC-DAG: @"\01??$ExportedStaticVar@UExplicitSpec_Def_Exported@@@MemVarTmpl@@2HB" = weak_odr dllexport constant i32 1, comdat, align 4
656 template<> __declspec(dllexport) const int MemVarTmpl::ExportedStaticVar<ExplicitSpec_Def_Exported> = 1;
660 // MSC-DAG: @"\01??$ExportedStaticVar@UExplicitSpec_NotExported@@@MemVarTmpl@@2HB" = weak_odr constant i32 1, comdat, align 4
662 template<> const int MemVarTmpl::ExportedStaticVar<ExplicitSpec_NotExported> = 1;