Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/utility/forward/
Dmove_only.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
Dmove_only4.fail.cpp18 class move_only class
31 move_only(move_only&&) {} in move_only() argument
32 move_only& operator=(move_only&&) {} in operator =() argument
38 move_only() {} in move_only() function in move_only
44 void test(move_only) {} in test() argument
Dmove_only1.fail.cpp18 class move_only class
31 move_only(move_only&&) {} in move_only() argument
32 move_only& operator=(move_only&&) {} in operator =() argument
38 move_only() {} in move_only() function in move_only
44 void test(move_only) {} in test() argument
Dmove_only3.fail.cpp15 class move_only class
28 move_only(move_only&&) {} in move_only() function in move_only
29 move_only& operator=(move_only&&) {} in operator =() argument
35 move_only() {} in move_only() function in move_only
41 void test(move_only) {} in test() argument
Dmove_only2.fail.cpp18 class move_only class
31 move_only(move_only&&) {} in move_only() argument
32 move_only& operator=(move_only&&) {} in operator =() argument
38 move_only() {} in move_only() function in move_only
44 void test(move_only) {} in test() argument
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
Dconstruct.pass.cpp39 class move_only class
47 move_only(move_only&&) {++move_only_constructed;} in move_only() function in move_only
48 move_only& operator=(move_only&&) {return *this;} in operator =() argument
50 move_only() {++move_only_constructed;} in move_only() function in move_only
/external/clang/test/PCH/
Dimplicitly-deleted.cpp3 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class