Lines Matching refs:rhs
64 friend void swap( ArenaAllocator& lhs, ArenaAllocator& rhs ) { in swap()
66 swap(lhs.my_data, rhs.my_data); in swap()
94 bool operator==( const ArenaAllocator<T, POCMA, C>& lhs, const ArenaAllocator<U, POCMA, C>& rhs ) {
95 return lhs.my_data == rhs.my_data;
99 bool operator!=( const ArenaAllocator<T, POCMA, C>& lhs, const ArenaAllocator<U, POCMA, C>& rhs ) {
100 return !(lhs == rhs);
230 friend bool operator==( const AllocatorCounters& lhs, const AllocatorCounters& rhs ) {
231 return lhs.items_allocated == rhs.items_allocated &&
232 lhs.items_freed == rhs.items_freed &&
233 lhs.items_constructed == rhs.items_constructed &&
234 lhs.items_destroyed == rhs.items_destroyed &&
235 lhs.allocations == rhs.allocations &&
236 lhs.frees == rhs.frees;
449 AllocatorAwareData( const AllocatorAwareData& rhs ) in AllocatorAwareData() argument
450 : my_allocator(rhs.my_allocator), my_value(rhs.my_value) in AllocatorAwareData()
455 AllocatorAwareData( AllocatorAwareData&& rhs) in AllocatorAwareData() argument
456 : my_allocator(rhs.my_allocator), my_value(rhs.my_value) in AllocatorAwareData()
461 AllocatorAwareData( const AllocatorAwareData& rhs, const allocator_type& allocator ) in AllocatorAwareData() argument
462 : my_allocator(allocator), my_value(rhs.my_value) {} in AllocatorAwareData()
464 AllocatorAwareData( AllocatorAwareData&& rhs, const allocator_type& allocator ) in AllocatorAwareData() argument
465 : my_allocator(allocator), my_value(rhs.my_value) {} in AllocatorAwareData()
485 bool operator==( const AllocatorAwareData<Allocator>& lhs, const AllocatorAwareData<Allocator>& rhs…
486 return lhs.value() == rhs.value();
490 bool operator<( const AllocatorAwareData<Allocator>& lhs, const AllocatorAwareData<Allocator>& rhs …
491 return lhs.value() < rhs.value();