Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:ExportedStaticVar

876   template<typename T> __declspec(dllexport) static const int ExportedStaticVar = 1;
879 template<typename T> const int MemVarTmpl::ExportedStaticVar;
882 int useMemVarTmpl() { return MemVarTmpl::ExportedStaticVar<ImplicitInst_Exported>; }
886 extern template const int MemVarTmpl::ExportedStaticVar<ExplicitDecl_Exported>;
887 template const int MemVarTmpl::ExportedStaticVar<ExplicitDecl_Exported>;
891 template const int MemVarTmpl::ExportedStaticVar<ExplicitInst_Exported>;
894 template<> __declspec(dllexport) const int MemVarTmpl::ExportedStaticVar<ExplicitSpec_Exported>;
895 template<> __declspec(dllexport) const int MemVarTmpl::ExportedStaticVar<ExplicitSpec_Def_Exported> = 1;
899 template<> const int MemVarTmpl::ExportedStaticVar<ExplicitSpec_NotExported>;