Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:ExportedVarTmpl

130 template<typename T> __declspec(dllexport) int ExportedVarTmpl = 1;
133 int useVarTmpl() { return ExportedVarTmpl<ImplicitInst_Exported>; }
136 extern template int ExportedVarTmpl<ExplicitDecl_Exported>;
137 template int ExportedVarTmpl<ExplicitDecl_Exported>;
140 template __declspec(dllexport) int ExportedVarTmpl<ExplicitInst_Exported>;
143 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Exported>;
144 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Def_Exported> = 1;
148 template<> int ExportedVarTmpl<ExplicitSpec_NotExported>;