Home
last modified time | relevance | path

Searched defs:move_only (Results 1 – 4 of 4) 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() argument
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/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() argument
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/clang/test/PCH/
Dimplicitly-deleted.cpp3 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class