Lines Matching refs:polymorphic_allocator

30   template <class Tp> class polymorphic_allocator;
33 bool operator==(const polymorphic_allocator<T1>& a,
34 const polymorphic_allocator<T2>& b) noexcept;
36 bool operator!=(const polymorphic_allocator<T1>& a,
37 const polymorphic_allocator<T2>& b) noexcept;
162 class _LIBCPP_DEPCREATED_MEMORY_RESOURCE("polymorphic_allocator") _LIBCPP_TEMPLATE_VIS polymorphic_…
169 polymorphic_allocator() _NOEXCEPT
174 polymorphic_allocator(memory_resource * __r) _NOEXCEPT
178 polymorphic_allocator(polymorphic_allocator const &) = default;
182 polymorphic_allocator(polymorphic_allocator<_Tp> const & __other) _NOEXCEPT
186 polymorphic_allocator &
187 operator=(polymorphic_allocator const &) = delete;
223 _T1, polymorphic_allocator&, _Args1...
230 _T2, polymorphic_allocator&, _Args2...
274 polymorphic_allocator
276 { return polymorphic_allocator(); }
294 tuple<allocator_arg_t const&, polymorphic_allocator&, _Args&&...>
298 using _Tup = tuple<allocator_arg_t const&, polymorphic_allocator&, _Args&&...>;
305 tuple<_Args&&..., polymorphic_allocator&>
309 using _Tup = tuple<_Args&&..., polymorphic_allocator&>;
323 …IBCPP_DEPCREATED_MEMORY_RESOURCE("operator==(const polymorphic_allocator&, const polymorphic_alloc…
325 bool operator==(polymorphic_allocator<_Tp> const & __lhs,
326 polymorphic_allocator<_Up> const & __rhs) _NOEXCEPT
332 …IBCPP_DEPCREATED_MEMORY_RESOURCE("operator!=(const polymorphic_allocator&, const polymorphic_alloc…
334 bool operator!=(polymorphic_allocator<_Tp> const & __lhs,
335 polymorphic_allocator<_Up> const & __rhs) _NOEXCEPT