Home
last modified time | relevance | path

Searched defs:move_only (Results 1 – 10 of 10) sorted by relevance

/external/libcxx/test/std/utilities/utility/forward/
Dmove.fail.cpp17 struct move_only { struct
18 move_only() {} in move_only() function
26 void test(move_only) {} in test() argument
Dmove.pass.cpp20 class move_only class
25 move_only(move_only&&) {} in move_only() function in move_only
26 move_only& operator=(move_only&&) {return *this;} in operator =() argument
28 move_only() {} in move_only() function in move_only
34 void test(move_only) {} in test() argument
/external/llvm-project/libcxx/test/std/utilities/utility/forward/
Dmove.fail.cpp20 struct move_only { struct
21 move_only() {} in move_only() argument
29 void test(move_only) {} in test() argument
Dmove.pass.cpp17 class move_only class
22 move_only(move_only&&) {} in move_only() argument
23 move_only& operator=(move_only&&) {return *this;} in operator =() argument
25 move_only() {} in move_only() function in move_only
31 void test(move_only) {} in test() argument
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
Dconstruct.pass.cpp39 class move_only class
45 move_only(move_only&&) {++move_only_constructed;} in move_only() function in move_only
46 move_only& operator=(move_only&&) {return *this;} in operator =() argument
48 move_only() {++move_only_constructed;} in move_only() function in move_only
/external/llvm-project/libcxx/test/libcxx/depr/depr.default.allocator/allocator.members/
Dconstruct.cxx2a.pass.cpp45 class move_only class
51 move_only(move_only&&) {++move_only_constructed;} in move_only() argument
52 move_only& operator=(move_only&&) {return *this;} in operator =() argument
54 move_only() {++move_only_constructed;} in move_only() function in move_only
/external/llvm-project/libcxx/test/std/containers/sequences/vector/vector.cons/
Dcopy.move_only.verify.cpp15 struct move_only struct
/external/llvm-project/clang/test/PCH/
Dimplicitly-deleted.cpp7 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class
/external/clang/test/PCH/
Dimplicitly-deleted.cpp3 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class
/external/libchrome/base/
Dno_destructor_unittest.cc52 MoveOnly move_only; in TEST() local