Home
last modified time | relevance | path

Searched refs:ExportSpecials (Results 1 – 2 of 2) sorted by relevance

/external/clang/test/CodeGenCXX/
Ddllexport-members.cpp280 struct ExportSpecials { struct
287 __declspec(dllexport) ExportSpecials();
295 __declspec(dllexport) ~ExportSpecials();
303 __declspec(dllexport) ExportSpecials(const ExportSpecials&);
309 __declspec(dllexport) ExportSpecials& operator=(const ExportSpecials&);
317 __declspec(dllexport) ExportSpecials(ExportSpecials&&);
323 __declspec(dllexport) ExportSpecials& operator=(ExportSpecials&&);
325 ExportSpecials::ExportSpecials() {} in ExportSpecials() function in ExportSpecials
326 ExportSpecials::~ExportSpecials() {} in ~ExportSpecials()
327 ExportSpecials::ExportSpecials(const ExportSpecials&) {} in ExportSpecials() function in ExportSpecials
[all …]
/external/clang/test/SemaCXX/
Ddllexport.cpp624 struct ExportSpecials { struct
625 __declspec(dllexport) ExportSpecials() {} in ExportSpecials() argument
626 __declspec(dllexport) ~ExportSpecials();
627 __declspec(dllexport) inline ExportSpecials(const ExportSpecials&);
628 __declspec(dllexport) ExportSpecials& operator=(const ExportSpecials&);
629 __declspec(dllexport) ExportSpecials(ExportSpecials&&);
630 __declspec(dllexport) ExportSpecials& operator=(ExportSpecials&&);
633 ExportSpecials::~ExportSpecials() {} in ~ExportSpecials()
634 ExportSpecials::ExportSpecials(const ExportSpecials&) {} in ExportSpecials() argument
635 inline ExportSpecials& ExportSpecials::operator=(const ExportSpecials&) { return *this; } in operator =() argument
[all …]