Searched refs:MoveOnly (Results 1 – 5 of 5) sorted by relevance
345 struct MoveOnly : MovePreferable { struct346 MoveOnly( const MoveOnly& ) = delete;347 MoveOnly() : MovePreferable() {} in MoveOnly() argument348 MoveOnly(bool addtofeed_) : MovePreferable(addtofeed_) {} in MoveOnly() function349 MoveOnly(MoveOnly&& other) : MovePreferable(std::move(other)) {}; in MoveOnly() argument
347 class MoveOnly : Movable, NoCopy {349 MoveOnly() : Movable() {}350 MoveOnly(MoveOnly&& other) : Movable(std::move(other)) {}
173 DoTestMoveSemantics<TestMoveSem::MoveOnly>();
650 struct MoveOnlyFunctor : utils::MoveOnly, TestFunctor {651 MoveOnlyFunctor() : utils::MoveOnly() {}; in MoveOnlyFunctor()652 MoveOnlyFunctor(MoveOnlyFunctor&& other) : utils::MoveOnly(std::move(other)) {}; in MoveOnlyFunctor()
1183 struct MoveOnlyFunctor : utils::MoveOnly, TestFunctor {1184 MoveOnlyFunctor() : utils::MoveOnly() {}; in MoveOnlyFunctor()1185 MoveOnlyFunctor(MoveOnlyFunctor&& other) : utils::MoveOnly(std::move(other)) {}; in MoveOnlyFunctor()