Lines Matching full:dllexport
72 // NB: MSVC issues a warning and makes GlobalRedecl3 dllexport. We follow GCC
218 // NB: MSVC issues a warning and makes redecl2/redecl3 dllexport. We follow GCC
963 // expected-error@+4{{attribute 'dllexport' cannot be applied to member of 'dllimport' class}}
967 void __declspec(dllexport) foo();
974 // expected-error@+4{{attribute 'dllimport' cannot be applied to member of 'dllexport' class}}
975 // expected-error@+4{{attribute 'dllexport' cannot be applied to member of 'dllexport' class}}
977 class __declspec(dllexport) ExportClassWithDllMember {
979 void __declspec(dllexport) bar();
1011 template <typename T> class __declspec(dllexport) ExportedClassTemplate {};
1040 class __declspec(dllexport) DerivedFromTemplateB : public ClassTemplate<bool> {};
1049 template <> struct __declspec(dllexport) ExplicitlyExportSpecializedTemplate<int> { void func() {} };
1059 template struct __declspec(dllexport) ExplicitlyExportInstantiatedTemplate<int>;