Lines Matching refs:__other
244 const __scoped_allocator_storage<_OuterA2, _InnerAllocs...>& __other) _NOEXCEPT
245 : outer_allocator_type(__other.outer_allocator()),
246 __inner_(__other.inner_allocator()) {}
254 __scoped_allocator_storage<_OuterA2, _InnerAllocs...>&& __other) _NOEXCEPT
255 : outer_allocator_type(_VSTD::move(__other.outer_allocator())),
256 __inner_(_VSTD::move(__other.inner_allocator())) {}
323 const __scoped_allocator_storage<_OuterA2>& __other) _NOEXCEPT
324 : outer_allocator_type(__other.outer_allocator()) {}
332 __scoped_allocator_storage<_OuterA2>&& __other) _NOEXCEPT
333 : outer_allocator_type(_VSTD::move(__other.outer_allocator())) {}
461 // scoped_allocator_adaptor(const scoped_allocator_adaptor& __other) = default;
468 const scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>& __other) _NOEXCEPT
469 : base(__other) {}
476 scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>&& __other) _NOEXCEPT
477 : base(_VSTD::move(__other)) {}