Lines Matching refs:__other
223 …__scoped_allocator_storage(const __scoped_allocator_storage<_OuterA2, _InnerAllocs...>& __other) _…
224 : outer_allocator_type(__other.outer_allocator()),
225 __inner_(__other.inner_allocator()) {}
229 …__scoped_allocator_storage(__scoped_allocator_storage<_OuterA2, _InnerAllocs...>&& __other) _NOEXC…
230 : outer_allocator_type(std::move(__other.outer_allocator())),
231 __inner_(std::move(__other.inner_allocator())) {}
273 …_FROM_ABI __scoped_allocator_storage(const __scoped_allocator_storage<_OuterA2>& __other) _NOEXCEPT
274 : outer_allocator_type(__other.outer_allocator()) {}
277 …_LIBCPP_HIDE_FROM_ABI __scoped_allocator_storage(__scoped_allocator_storage<_OuterA2>&& __other) _…
278 : outer_allocator_type(std::move(__other.outer_allocator())) {}
368 // scoped_allocator_adaptor(const scoped_allocator_adaptor& __other) = default;
371 …scoped_allocator_adaptor(const scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>& __other) _NOEX…
372 : _Base(__other) {}
375 scoped_allocator_adaptor(scoped_allocator_adaptor<_OuterA2, _InnerAllocs...>&& __other) _NOEXCEPT
376 : _Base(std::move(__other)) {}