Home | History | Annotate | Download | only in bits

Lines Matching defs:move

96 	: _Tp_alloc_type(std::move(__a)),
140 : _M_impl(std::move(__a)) { }
143 : _M_impl(std::move(__x._M_get_Tp_allocator()))
321 * @brief %Vector move constructor.
328 : _Base(std::move(__x)) { }
339 /// Move constructor with alternative allocator
341 : _Base(std::move(__rv), __m)
431 * @brief %Vector move assignment operator.
444 _M_move_assign(std::move(__x),
920 { emplace_back(std::move(__x)); }
989 { return emplace(__position, std::move(__x)); }
1358 // Constant-time move assignment when source object's memory can be
1359 // moved, either because the source's allocator will move too
1372 // Do move assignment when it might not be possible to move source
1378 _M_move_assign(std::move(__x), std::true_type());
1382 // so we need to individually move each element.