Searched refs:__fun (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__thread/ |
H A D | jthread.h | 47 _LIBCPP_HIDE_FROM_ABI explicit jthread(_Fun&& __fun, _Args&&... __args) in jthread() argument 50 …__thread_(__init_thread(__stop_source_, std::forward<_Fun>(__fun), std::forward<_Args>(__args)...)… in jthread() 116 …_LIBCPP_HIDE_FROM_ABI static thread __init_thread(const stop_source& __ss, _Fun&& __fun, _Args&&..… in __init_thread() argument 118 return thread(std::forward<_Fun>(__fun), __ss.get_token(), std::forward<_Args>(__args)...); in __init_thread() 120 return thread(std::forward<_Fun>(__fun), std::forward<_Args>(__args)...); in __init_thread()
|
/freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | ref_view.h | 45 static void __fun(_Range&); 46 …static void __fun(_Range&&) = delete; // NOLINT(modernize-use-equals-delete) ; This is llvm.org/PR… 50 …requires __different_from<_Tp, ref_view> && convertible_to<_Tp, _Range&> && requires { __fun(std::…
|
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | reference_wrapper.h | 41 static void __fun(_Tp&) _NOEXCEPT; 42 …static void __fun(_Tp&&) = delete; // NOLINT(modernize-use-equals-delete) ; This is llvm.org/PR542… 46 class = __void_t<decltype(__fun(std::declval<_Up>()))>, 49 _NOEXCEPT_(noexcept(__fun(std::declval<_Up>()))) { in reference_wrapper()
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | uses_allocator_construction.h | 145 void __fun(const pair<_Ap, _Bp>&); 148 decltype(__uses_allocator_detail::__fun(std::declval<_Tp>()), true_type()) __convertible_to_const_p…
|