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

  /external/libcxx/test/std/experimental/any/any.class/any.cons/
move.pass.cpp 28 // Moves are always noexcept. The throws_on_move object
34 assert(throws_on_move::count == 0);
36 throws_on_move v(42);
38 assert(throws_on_move::count == 2);
44 assertContains<throws_on_move>(a2, 42);
48 assert(throws_on_move::count == 1);
51 assert(throws_on_move::count == 0);
value.pass.cpp 59 assert(throws_on_move::count == 0);
61 throws_on_move v;
62 assert(throws_on_move::count == 1);
71 assert(throws_on_move::count == 1);
73 assert(throws_on_move::count == 0);
  /external/libcxx/test/std/utilities/any/any.class/any.cons/
move.pass.cpp 28 // Moves are always noexcept. The throws_on_move object
34 assert(throws_on_move::count == 0);
36 throws_on_move v(42);
38 assert(throws_on_move::count == 2);
44 assertContains<throws_on_move>(a2, 42);
48 assert(throws_on_move::count == 1);
51 assert(throws_on_move::count == 0);
value.pass.cpp 59 assert(throws_on_move::count == 0);
61 throws_on_move v;
62 assert(throws_on_move::count == 1);
71 assert(throws_on_move::count == 1);
73 assert(throws_on_move::count == 0);
in_place_type.pass.cpp 188 test_in_place_type<throws_on_move>();
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.cons/
move.pass.cpp 28 // Moves are always noexcept. The throws_on_move object
34 assert(throws_on_move::count == 0);
36 throws_on_move v(42);
38 assert(throws_on_move::count == 2);
44 assertContains<throws_on_move>(a2, 42);
48 assert(throws_on_move::count == 1);
51 assert(throws_on_move::count == 0);
value.pass.cpp 59 assert(throws_on_move::count == 0);
61 throws_on_move v;
62 assert(throws_on_move::count == 1);
71 assert(throws_on_move::count == 1);
73 assert(throws_on_move::count == 0);
  /external/libcxx/test/support/
experimental_any_helpers.h 223 // and 'throws_on_move'.
299 struct throws_on_move
304 explicit throws_on_move(int val = 0) : value(val) { ++count; }
306 throws_on_move(throws_on_move const & other) {
311 throws_on_move(throws_on_move &&) {
315 ~throws_on_move() {
319 throws_on_move& operator=(throws_on_move const&) = delete
    [all...]
any_helpers.h 259 // and 'throws_on_move'.
351 struct throws_on_move struct
359 explicit throws_on_move(int val = 0) : value(val) { ++count; } function in struct:throws_on_move
360 explicit throws_on_move(int, int val, int) : value(val) { ++count; } function in struct:throws_on_move
361 throws_on_move(throws_on_move const & other) { function in struct:throws_on_move
366 throws_on_move(throws_on_move &&) { function in struct:throws_on_move
370 ~throws_on_move() {
374 throws_on_move& operator=(throws_on_move const&) = delete
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
any_helpers.h 223 // and 'throws_on_move'.
299 struct throws_on_move
304 explicit throws_on_move(int val = 0) : value(val) { ++count; }
306 throws_on_move(throws_on_move const & other) {
311 throws_on_move(throws_on_move &&) {
315 ~throws_on_move() {
319 throws_on_move& operator=(throws_on_move const&) = delete
    [all...]
  /external/libcxx/test/std/utilities/any/any.nonmembers/
make_any.pass.cpp 132 test_make_any_type<throws_on_move>();
  /external/libcxx/test/std/experimental/any/any.class/any.assign/
value.pass.cpp 176 test_assign_throws<throws_on_move, /* Move = */ true>();
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.assign/
value.pass.cpp 176 test_assign_throws<throws_on_move, /* Move = */ true>();
  /external/libcxx/test/std/utilities/any/any.class/any.assign/
value.pass.cpp 207 test_assign_throws<throws_on_move, /* Move = */ true>();
  /external/libcxx/test/std/utilities/any/any.class/any.modifiers/
emplace.pass.cpp 254 test_emplace_type<throws_on_move>();

Completed in 459 milliseconds