OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThrowsCtorT
(Results
1 - 2
of
2
) sorted by null
/external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
T.pass.cpp
41
struct
ThrowsCtorT
{
42
ThrowsCtorT
(int) noexcept(false) {}
43
ThrowsCtorT
&operator=(int) noexcept { return *this; }
61
struct
ThrowsCtorT
{
63
ThrowsCtorT
() : value(0) {}
64
ThrowsCtorT
(int) noexcept(false) { throw 42; }
65
ThrowsCtorT
&operator=(int v) noexcept {
120
using V = std::variant<Dummy,
ThrowsCtorT
>;
195
using V = std::variant<std::string,
ThrowsCtorT
>;
219
using V = std::variant<
ThrowsCtorT
>;
[
all
...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/variant/variant.variant/variant.assign/
T.pass.cpp
41
struct
ThrowsCtorT
{
42
ThrowsCtorT
(int) noexcept(false) {}
43
ThrowsCtorT
&operator=(int) noexcept { return *this; }
61
struct
ThrowsCtorT
{
63
ThrowsCtorT
() : value(0) {}
64
ThrowsCtorT
(int) noexcept(false) { throw 42; }
65
ThrowsCtorT
&operator=(int v) noexcept {
120
using V = std::variant<Dummy,
ThrowsCtorT
>;
195
using V = std::variant<std::string,
ThrowsCtorT
>;
219
using V = std::variant<
ThrowsCtorT
>;
[
all
...]
Completed in 130 milliseconds