Lines Matching refs:__alloc
647 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 tuple(allocator_arg_t, const _Alloc& __alloc, …
648 : __base_(allocator_arg_t(), __alloc, __t) {}
653 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 tuple(allocator_arg_t, const _Alloc& __alloc, …
654 : __base_(allocator_arg_t(), __alloc, std::move(__t)) {}
706 tuple(allocator_arg_t, const _Alloc& __alloc, tuple<_Up...>& __t)
707 : __base_(allocator_arg_t(), __alloc, __t) {}
735 tuple(allocator_arg_t, const _Alloc& __alloc, const tuple<_Up...>&& __t)
736 : __base_(allocator_arg_t(), __alloc, std::move(__t)) {}
796 tuple(allocator_arg_t, const _Alloc& __alloc, pair<_U1, _U2>& __p)
797 : __base_(allocator_arg_t(), __alloc, __p) {}
834 tuple(allocator_arg_t, const _Alloc& __alloc, const pair<_U1, _U2>&& __p)
835 : __base_(allocator_arg_t(), __alloc, std::move(__p)) {}