Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
DT.pass.cpp42 struct ThrowsCtorT { struct
43 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function
44 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =()
62 struct ThrowsCtorT { struct
63 int value;
64 ThrowsCtorT() : value(0) {} in ThrowsCtorT() argument
65 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() function
66 ThrowsCtorT &operator=(int v) noexcept { in operator =()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/variant/variant.variant/variant.assign/
DT.pass.cpp35 struct ThrowsCtorT { struct
36 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function
37 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =()
55 struct ThrowsCtorT { struct
56 int value;
57 ThrowsCtorT() : value(0) {} in ThrowsCtorT() function
58 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() argument
59 ThrowsCtorT &operator=(int v) noexcept { in operator =()