Lines Matching refs:__alloc
643 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 tuple(allocator_arg_t, const _Alloc& __alloc, …
644 : __base_(allocator_arg_t(), __alloc, __t) {}
649 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 tuple(allocator_arg_t, const _Alloc& __alloc, …
650 : __base_(allocator_arg_t(), __alloc, std::move(__t)) {}
702 tuple(allocator_arg_t, const _Alloc& __alloc, tuple<_Up...>& __t)
703 : __base_(allocator_arg_t(), __alloc, __t) {}
731 tuple(allocator_arg_t, const _Alloc& __alloc, const tuple<_Up...>&& __t)
732 : __base_(allocator_arg_t(), __alloc, std::move(__t)) {}
792 tuple(allocator_arg_t, const _Alloc& __alloc, pair<_U1, _U2>& __p)
793 : __base_(allocator_arg_t(), __alloc, __p) {}
830 tuple(allocator_arg_t, const _Alloc& __alloc, const pair<_U1, _U2>&& __p)
831 : __base_(allocator_arg_t(), __alloc, std::move(__p)) {}