Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.swap/
Dswap.pass.cpp77 struct NothrowTypeImp { struct
82 NothrowTypeImp() = default; argument
83 explicit NothrowTypeImp(int v) : value(v) {} in NothrowTypeImp() argument
84 NothrowTypeImp(const NothrowTypeImp &o) noexcept(NT_Copy) : value(o.value) { in NothrowTypeImp() function
87 NothrowTypeImp(NothrowTypeImp &&o) noexcept(NT_Move) : value(o.value) { in NothrowTypeImp() argument
92 NothrowTypeImp &operator=(const NothrowTypeImp &) noexcept(NT_CopyAssign) { in operator =() argument
96 NothrowTypeImp &operator=(NothrowTypeImp &&o) noexcept(NT_MoveAssign) { in operator =() argument
107 int NothrowTypeImp<NT_Copy, NT_Move, NT_CopyAssign, NT_MoveAssign, NT_Swap, argument
111 int NothrowTypeImp<NT_Copy, NT_Move, NT_CopyAssign, NT_MoveAssign, NT_Swap,
115 int NothrowTypeImp<NT_Copy, NT_Move, NT_CopyAssign, NT_MoveAssign, NT_Swap,
[all …]