Lines Matching defs:move_semantics
230 MoveSemantics move_semantics;
231 callByValue(std::move(move_semantics));
232 callByRValueRef(std::move(move_semantics));
233 MoveSemantics other(std::move(move_semantics));
234 other = std::move(move_semantics);
256 MoveSemanticsAlias move_semantics;
257 callByValue(std::move(move_semantics));
258 callByRValueRef(std::move(move_semantics));
259 MoveSemanticsAlias other(std::move(move_semantics));
260 other = std::move(move_semantics);