Home
last modified time | relevance | path

Searched refs:__handle_ (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__coroutine/
H A Dcoroutine_handle.h41 __handle_ = nullptr;
46 _LIBCPP_HIDE_FROM_ABI constexpr void* address() const noexcept { return __handle_; }
50 __tmp.__handle_ = __addr;
55 _LIBCPP_HIDE_FROM_ABI constexpr explicit operator bool() const noexcept { return __handle_ != nullptr; }
59 return __builtin_coro_done(__handle_);
68 __builtin_coro_resume(__handle_);
73 __builtin_coro_destroy(__handle_);
79 return __handle_ != nullptr;
82 void* __handle_ = nullptr;
105 __tmp.__handle_
[all...]
H A Dnoop_coroutine_handle.h50 __builtin_coro_promise(this->__handle_, alignof(noop_coroutine_promise), false));
54 _LIBCPP_HIDE_FROM_ABI constexpr void* address() const noexcept { return __handle_; }
60 _LIBCPP_HIDE_FROM_ABI coroutine_handle() noexcept { this->__handle_ = __builtin_coro_noop(); }
62 void* __handle_ = nullptr;
77 void* __handle_ = &__noop_coroutine_frame_;
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_arg.h144 …::forward<_Visitor>(__vis), typename basic_format_arg<_Context>::handle{__arg.__value_.__handle_}); in decltype()
195 …::forward<_Visitor>(__vis), typename basic_format_arg<_Context>::handle{__arg.__value_.__handle_}); in __visit_format_arg()
249 __handle __handle_; member
274 …_LIBCPP_HIDE_FROM_ABI __basic_format_arg_value(__handle&& __value) noexcept : __handle_(std::move(… in __basic_format_arg_value()
359 __handle_.__format_(__parse_ctx, __ctx, __handle_.__ptr_); in format()
363 : __handle_(__handle) {} in handle()
366 typename __basic_format_arg_value<_Context>::__handle& __handle_;