Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:ExportDefaultedDefs

679 struct ExportDefaultedDefs {
680 __declspec(dllexport) ExportDefaultedDefs();
681 __declspec(dllexport) ~ExportDefaultedDefs();
683 __declspec(dllexport) inline ExportDefaultedDefs(const ExportDefaultedDefs&);
684 __declspec(dllexport) ExportDefaultedDefs& operator=(const ExportDefaultedDefs&);
686 __declspec(dllexport) ExportDefaultedDefs(ExportDefaultedDefs&&);
687 __declspec(dllexport) ExportDefaultedDefs& operator=(ExportDefaultedDefs&&);
691 __declspec(dllexport) ExportDefaultedDefs::ExportDefaultedDefs() = default;
692 ExportDefaultedDefs::~ExportDefaultedDefs() = default;
695 __declspec(dllexport) ExportDefaultedDefs::ExportDefaultedDefs(const ExportDefaultedDefs&) = default;
696 inline ExportDefaultedDefs& ExportDefaultedDefs::operator=(const ExportDefaultedDefs&) = default;
698 __declspec(dllexport) ExportDefaultedDefs::ExportDefaultedDefs(ExportDefaultedDefs&&) = default;
699 ExportDefaultedDefs& ExportDefaultedDefs::operator=(ExportDefaultedDefs&&) = default;