Searched refs:allocator_arg_t (Results 1 - 6 of 6) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/include/__memory/
H A Dallocator_arg_t.h26 struct _LIBCPP_TEMPLATE_VIS allocator_arg_t { struct
27 explicit allocator_arg_t() = default;
31 inline constexpr allocator_arg_t allocator_arg = allocator_arg_t();
33 constexpr allocator_arg_t allocator_arg = allocator_arg_t();
44 static const bool __ic = is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value;
H A Duses_allocator_construction.h49 is_constructible_v<_Type, allocator_arg_t, const _Alloc&, _Args...>) {
50 return tuple<allocator_arg_t, const _Alloc&, _Args&&...>(allocator_arg, __alloc, std::forward<_Args>(__args)...);
/freebsd-current/contrib/llvm-project/libcxx/include/__functional/
H A Dfunction.h856 _LIBCPP_HIDE_FROM_ABI function(allocator_arg_t, const _Alloc&) _NOEXCEPT {}
858 _LIBCPP_HIDE_FROM_ABI function(allocator_arg_t, const _Alloc&, nullptr_t) _NOEXCEPT {}
860 _LIBCPP_HIDE_FROM_ABI function(allocator_arg_t, const _Alloc&, const function&);
862 _LIBCPP_HIDE_FROM_ABI function(allocator_arg_t, const _Alloc&, function&&);
864 _LIBCPP_HIDE_FROM_ABI function(allocator_arg_t, const _Alloc& __a, _Fp __f);
924 function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc&, const function& __f) : __f_(__f.__f_) {}
933 function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc&, function&& __f) : __f_(std::move(__f.__f_)) {}
943 function<_Rp(_ArgTypes...)>::function(allocator_arg_t, const _Alloc& __a, _Fp __f) : __f_(std::move(__f), __a) {}
/freebsd-current/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dpolymorphic_allocator.h185 _LIBCPP_HIDE_FROM_ABI tuple<allocator_arg_t const&, polymorphic_allocator&, _Args&&...>
187 using _Tup = tuple<allocator_arg_t const&, polymorphic_allocator&, _Args&&...>;
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dmemory.inc27 using std::allocator_arg_t;
/freebsd-current/lib/libc++/
H A DMakefile928 MEM_HEADERS+= allocator_arg_t.h

Completed in 124 milliseconds