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

  /external/clang/test/CodeGenCXX/
dllexport.cpp 155 template<typename T> __declspec(dllexport) int ExportedVarTmpl = 1;
158 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
160 USEVAR(ExportedVarTmpl<ImplicitInst_Exported>)
163 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
165 extern template int ExportedVarTmpl<ExplicitDecl_Exported>;
166 template int ExportedVarTmpl<ExplicitDecl_Exported>;
169 // MSC-DAG: @"\01??$ExportedVarTmpl@UImplicitInst_Exported@@@@3HA" = weak_odr dllexport global i32 1, comdat, align 4
171 template __declspec(dllexport) int ExportedVarTmpl<ExplicitInst_Exported>;
174 // MSC-DAG: @"\01??$ExportedVarTmpl@UExplicitSpec_Exported@@@@3HA" = dllexport global i32 0, align 4
176 template<> __declspec(dllexport) int ExportedVarTmpl<ExplicitSpec_Exported>
    [all...]
  /external/clang/test/SemaCXX/
dllexport.cpp 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>;
    [all...]

Completed in 1401 milliseconds