Lines Matching refs:rhs
58 void copy_assign_allocators_impl( Allocator& lhs, const Allocator& rhs, /*pocca = */std::true_type …
59 lhs = rhs;
67 void copy_assign_allocators( Allocator& lhs, const Allocator& rhs ) {
69 copy_assign_allocators_impl(lhs, rhs, pocca_type());
73 void move_assign_allocators_impl( Allocator& lhs, Allocator& rhs, /*pocma = */ std::true_type ) {
74 lhs = std::move(rhs);
82 void move_assign_allocators( Allocator& lhs, Allocator& rhs ) {
84 move_assign_allocators_impl(lhs, rhs, pocma_type());
88 void swap_allocators_impl( Allocator& lhs, Allocator& rhs, /*pocs = */ std::true_type ) {
90 swap(lhs, rhs);
98 void swap_allocators( Allocator& lhs, Allocator& rhs ) {
100 swap_allocators_impl(lhs, rhs, pocs_type());