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

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 50 int move_only_constructed = 0; variable
66 move_only(move_only&&) {++move_only_constructed;}
70 move_only(std::__rv<move_only>) {++move_only_constructed;}
73 move_only() {++move_only_constructed;}
74 ~move_only() {--move_only_constructed;}
127 assert(move_only_constructed == 0);
131 assert(move_only_constructed == 0);
135 assert(move_only_constructed == 1);
139 assert(move_only_constructed == 0);
143 assert(move_only_constructed == 1)
    [all...]
  /external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 36 int move_only_constructed = 0; variable
47 move_only(move_only&&) {++move_only_constructed;}
50 move_only() {++move_only_constructed;}
51 ~move_only() {--move_only_constructed;}
108 assert(move_only_constructed == 0);
114 assert(move_only_constructed == 0);
118 assert(move_only_constructed == 1);
122 assert(move_only_constructed == 0);
126 assert(move_only_constructed == 1);
130 assert(move_only_constructed == 0)
    [all...]

Completed in 4331 milliseconds