Searched defs:move_only (Results 1 – 10 of 10) sorted by relevance
17 struct move_only { struct18 move_only() {} in move_only() function26 void test(move_only) {} in test() argument
20 class move_only class25 move_only(move_only&&) {} in move_only() function in move_only26 move_only& operator=(move_only&&) {return *this;} in operator =() argument28 move_only() {} in move_only() function in move_only34 void test(move_only) {} in test() argument
20 struct move_only { struct21 move_only() {} in move_only() argument29 void test(move_only) {} in test() argument
17 class move_only class22 move_only(move_only&&) {} in move_only() argument23 move_only& operator=(move_only&&) {return *this;} in operator =() argument25 move_only() {} in move_only() function in move_only31 void test(move_only) {} in test() argument
39 class move_only class45 move_only(move_only&&) {++move_only_constructed;} in move_only() function in move_only46 move_only& operator=(move_only&&) {return *this;} in operator =() argument48 move_only() {++move_only_constructed;} in move_only() function in move_only
45 class move_only class51 move_only(move_only&&) {++move_only_constructed;} in move_only() argument52 move_only& operator=(move_only&&) {return *this;} in operator =() argument54 move_only() {++move_only_constructed;} in move_only() function in move_only
15 struct move_only struct
7 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class
3 class move_only { move_only(const move_only&) = delete; move_only(move_only&&); }; class
52 MoveOnly move_only; in TEST() local