Home | History | Annotate | Download | only in 4.8

Lines Matching full:__other

110       __inner_type_impl(const __inner_type_impl<_Alloc>& __other)
114 __inner_type_impl(__inner_type_impl<_Alloc>&& __other)
141 __inner_type_impl(const __inner_type_impl<_Allocs...>& __other)
142 : _M_inner(__other._M_inner) { }
145 __inner_type_impl(__inner_type_impl<_Allocs...>&& __other)
146 : _M_inner(std::move(__other._M_inner)) { }
164 operator==(const __inner_type_impl& __other) const noexcept
165 { return _M_inner == __other._M_inner; }
289 scoped_allocator_adaptor(const scoped_allocator_adaptor& __other)
290 : _OuterAlloc(__other.outer_allocator()),
291 _M_inner(__other._M_inner)
294 scoped_allocator_adaptor(scoped_allocator_adaptor&& __other)
295 : _OuterAlloc(std::move(__other.outer_allocator())),
296 _M_inner(std::move(__other._M_inner))
301 const scoped_allocator_adaptor<_Outer2, _InnerAllocs...>& __other)
302 : _OuterAlloc(__other.outer_allocator()),
303 _M_inner(__other._M_inner)
308 scoped_allocator_adaptor<_Outer2, _InnerAllocs...>&& __other)
309 : _OuterAlloc(std::move(__other.outer_allocator())),
310 _M_inner(std::move(__other._M_inner))