HomeSort by relevance Sort by last modified time
    Searched refs:ThrowsAssignT (Results 1 - 2 of 2) sorted by null

  /external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
T.pass.cpp 46 struct ThrowsAssignT {
47 ThrowsAssignT(int) noexcept {}
48 ThrowsAssignT &operator=(int) noexcept(false) { return *this; }
93 struct ThrowsAssignT {
95 ThrowsAssignT() : value(0) {}
96 ThrowsAssignT(int v) noexcept : value(v) {}
97 ThrowsAssignT &operator=(int) noexcept(false) { throw 42; }
124 using V = std::variant<Dummy, ThrowsAssignT>;
206 using V = std::variant<ThrowsAssignT, std::string>;
233 using V = std::variant<ThrowsAssignT>;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/variant/variant.variant/variant.assign/
T.pass.cpp 46 struct ThrowsAssignT {
47 ThrowsAssignT(int) noexcept {}
48 ThrowsAssignT &operator=(int) noexcept(false) { return *this; }
93 struct ThrowsAssignT {
95 ThrowsAssignT() : value(0) {}
96 ThrowsAssignT(int v) noexcept : value(v) {}
97 ThrowsAssignT &operator=(int) noexcept(false) { throw 42; }
124 using V = std::variant<Dummy, ThrowsAssignT>;
206 using V = std::variant<ThrowsAssignT, std::string>;
233 using V = std::variant<ThrowsAssignT>;
    [all...]

Completed in 110 milliseconds