/freebsd-src/contrib/llvm-project/libcxx/include/__format/ |
H A D | format_functions.h | 69 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI __format_arg_store<_Context, _Args...> make_format_args(_Args&... __args) { in make_format_args() argument 76 return std::__format_arg_store<wformat_context, _Args...>(__args...); in make_wformat_args() argument 426 vformat_to(_OutIt __out_it,string_view __fmt,format_args __args) vformat_to() argument 433 vformat_to(_OutIt __out_it,wstring_view __fmt,wformat_args __args) vformat_to() argument 440 format_to(_OutIt __out_it,format_string<_Args...> __fmt,_Args &&...__args) format_to() argument 447 format_to(_OutIt __out_it,wformat_string<_Args...> __fmt,_Args &&...__args) format_to() argument 456 vformat(string_view __fmt,format_args __args) vformat() argument 467 vformat(wstring_view __fmt,wformat_args __args) vformat() argument 476 format(format_string<_Args...> __fmt,_Args &&...__args) format() argument 483 format(wformat_string<_Args...> __fmt,_Args &&...__args) format() argument 493 __vformat_to_n(_OutIt __out_it,iter_difference_t<_OutIt> __n,basic_string_view<_CharT> __fmt,basic_format_args<_Context> __args) __vformat_to_n() argument 502 format_to_n(_OutIt __out_it,iter_difference_t<_OutIt> __n,format_string<_Args...> __fmt,_Args &&...__args) format_to_n() argument 509 format_to_n(_OutIt __out_it,iter_difference_t<_OutIt> __n,wformat_string<_Args...> __fmt,_Args &&...__args) format_to_n() argument 515 __vformatted_size(basic_string_view<_CharT> __fmt,auto __args) __vformatted_size() argument 524 formatted_size(format_string<_Args...> __fmt,_Args &&...__args) formatted_size() argument 531 formatted_size(wformat_string<_Args...> __fmt,_Args &&...__args) formatted_size() argument 559 vformat_to(_OutIt __out_it,locale __loc,string_view __fmt,format_args __args) vformat_to() argument 566 vformat_to(_OutIt __out_it,locale __loc,wstring_view __fmt,wformat_args __args) vformat_to() argument 573 format_to(_OutIt __out_it,locale __loc,format_string<_Args...> __fmt,_Args &&...__args) format_to() argument 580 format_to(_OutIt __out_it,locale __loc,wformat_string<_Args...> __fmt,_Args &&...__args) format_to() argument 589 vformat(locale __loc,string_view __fmt,format_args __args) vformat() argument 600 vformat(locale __loc,wstring_view __fmt,wformat_args __args) vformat() argument 609 format(locale __loc,format_string<_Args...> __fmt,_Args &&...__args) format() argument 616 format(locale __loc,wformat_string<_Args...> __fmt,_Args &&...__args) format() argument 627 __vformat_to_n(_OutIt __out_it,iter_difference_t<_OutIt> __n,locale __loc,basic_string_view<_CharT> __fmt,basic_format_args<_Context> __args) __vformat_to_n() argument 636 format_to_n(_OutIt __out_it,iter_difference_t<_OutIt> __n,locale __loc,format_string<_Args...> __fmt,_Args &&...__args) format_to_n() argument 644 format_to_n(_OutIt __out_it,iter_difference_t<_OutIt> __n,locale __loc,wformat_string<_Args...> __fmt,_Args &&...__args) format_to_n() argument 652 __vformatted_size(locale __loc,basic_string_view<_CharT> __fmt,auto __args) __vformatted_size() argument 662 formatted_size(locale __loc,format_string<_Args...> __fmt,_Args &&...__args) formatted_size() argument 669 formatted_size(locale __loc,wformat_string<_Args...> __fmt,_Args &&...__args) formatted_size() argument [all...] |
H A D | format_arg_store.h | 227 ([&] { *__data++ = __format::__create_format_arg<_Context>(__args); }(), ...); in __store_basic_format_arg() argument 210 __create_packed_storage(uint64_t & __types,__basic_format_arg_value<_Context> * __values,_Args &...__args) __create_packed_storage() argument
|
H A D | format_context.h | 65 return std::basic_format_context(std::move(__out_it), __args); in __format_context_create() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | to.h | 88 to(_Range && __range,_Args &&...__args) to() argument 195 to(_Range && __range,_Args &&...__args) to() argument 204 to(_Args &&...__args) to() argument 222 to(_Args &&...__args) to() argument [all...] |
H A D | single_view.h | 62 _LIBCPP_HIDE_FROM_ABI constexpr explicit single_view(in_place_t, _Args&&... __args) in single_view() argument
|
H A D | non_propagating_cache.h | 91 _LIBCPP_HIDE_FROM_ABI constexpr _Tp& __emplace(_Args&&... __args) { in __emplace()
|
H A D | movable_box.h | 64 : __val_(in_place, std::forward<_Args>(__args)...) {} in __movable_box() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__functional/ |
H A D | invoke.h | 27 invoke(_Fn&& __f, _Args&&... __args) noexcept(is_nothrow_invocable_v<_Fn, _Args...>) { in invoke() 37 invoke_r(_Fn&& __f, _Args&&... __args) noexcept(is_nothrow_invocable_r_v<_Result, _Fn, _Args...>) { in invoke_r()
|
H A D | bind_front.h | 48 bind_front(_Fn && __f,_Args &&...__args) bind_front() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__memory/ |
H A D | allocator_arg_t.h | 53 …c_construct_impl(integral_constant<int, 0>, _Tp* __storage, const _Allocator&, _Args&&... __args) { in __user_alloc_construct_impl() 60 …nstruct_impl(integral_constant<int, 1>, _Tp* __storage, const _Allocator& __a, _Args&&... __args) { in __user_alloc_construct_impl() 67 …nstruct_impl(integral_constant<int, 2>, _Tp* __storage, const _Allocator& __a, _Args&&... __args) { in __user_alloc_construct_impl()
|
H A D | construct_at.h | 39 _LIBCPP_HIDE_FROM_ABI constexpr _Tp* construct_at(_Tp* __location, _Args&&... __args) { in construct_at() argument 47 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp* __construct_at(_Tp* __location, _Args&&... __args) { in __construct_at() argument
|
H A D | uses_allocator_construction.h | 45 __uses_allocator_construction_args(const _Alloc& __alloc, _Args&&... __args) noexcept { in __uses_allocator_construction_args() argument 213 __make_obj_using_allocator(const _Alloc & __alloc,_Args &&...__args) __make_obj_using_allocator() argument 220 __uninitialized_construct_using_allocator(_Type * __ptr,const _Alloc & __alloc,_Args &&...__args) __uninitialized_construct_using_allocator() argument [all...] |
/freebsd-src/contrib/llvm-project/libcxx/include/__thread/ |
H A D | jthread.h | 48 jthread(_Fun && __fun,_Args &&...__args) jthread() argument 117 __init_thread(const stop_source & __ss,_Fun && __fun,_Args &&...__args) __init_thread() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__concepts/ |
H A D | invocable.h | 27 concept invocable = requires(_Fn&& __fn, _Args&&... __args) { in requires()
|
/freebsd-src/contrib/llvm-project/libcxx/include/__utility/ |
H A D | small_buffer.h | 82 _LIBCPP_HIDE_FROM_ABI void __construct(_Args&&... __args) { in __construct() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | from_chars_integral.h | 41 __sign_combinator(_It __first,_It __last,_Tp & __value,_Fn __f,_Ts...__args) __sign_combinator() argument 98 __subject_seq_combinator(_It __first,_It __last,_Tp & __value,_Fn __f,_Ts...__args) __subject_seq_combinator() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | filesystem_error.h | 74 throw filesystem_error(std::forward<_Args>(__args)...); in __throw_filesystem_error() argument
|
/freebsd-src/contrib/llvm-project/libcxx/include/__mutex/ |
H A D | once_flag.h | 126 …ne _LIBCPP_HIDE_FROM_ABI void call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args) { in call_once()
|
/freebsd-src/contrib/llvm-project/libcxx/include/__memory_resource/ |
H A D | polymorphic_allocator.h | 119 _LIBCPP_HIDE_FROM_ABI void construct(_Tp* __p, _Ts&&... __args) { in construct() argument
|