Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/variant/variant.variant/variant.swap/
H A Dswap.pass.cpp68 struct NothrowTypeImp { struct
73 NothrowTypeImp() = default; argument
74 explicit NothrowTypeImp(int v) : value(v) {} in NothrowTypeImp() argument
75 NothrowTypeImp(const NothrowTypeImp &o) noexcept(NT_Copy) : value(o.value) { in NothrowTypeImp() function
78 NothrowTypeImp(NothrowTypeImp &&o) noexcept(NT_Move) : value(o.value) { in NothrowTypeImp() function
83 NothrowTypeImp &operator=(const NothrowTypeImp &) noexcept(NT_CopyAssign) { in operator =() argument
87 NothrowTypeImp &operator=(NothrowTypeImp &&o) noexcept(NT_MoveAssign) { in operator =() argument
98 int NothrowTypeImp<NT_Copy, NT_Move, NT_CopyAssign, NT_MoveAssign, NT_Swap, argument
/aosp_15_r20/external/libcxx/test/std/utilities/variant/variant.variant/variant.swap/
H A 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() argument
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