OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThrowsCtorTandMove
(Results
1 - 2
of
2
) sorted by null
/external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
T.pass.cpp
82
struct
ThrowsCtorTandMove
{
84
ThrowsCtorTandMove
() : value(0) {}
85
ThrowsCtorTandMove
(int) noexcept(false) { throw 42; }
86
ThrowsCtorTandMove
(
ThrowsCtorTandMove
&&) noexcept(false) { assert(false); }
87
ThrowsCtorTandMove
&operator=(int v) noexcept {
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/variant/variant.variant/variant.assign/
T.pass.cpp
82
struct
ThrowsCtorTandMove
{
84
ThrowsCtorTandMove
() : value(0) {}
85
ThrowsCtorTandMove
(int) noexcept(false) { throw 42; }
86
ThrowsCtorTandMove
(
ThrowsCtorTandMove
&&) noexcept(false) { assert(false); }
87
ThrowsCtorTandMove
&operator=(int v) noexcept {
Completed in 93 milliseconds