Home
last modified time | relevance | path

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

/external/cronet/buildtools/third_party/libc++/trunk/include/__coroutine/
Dcoroutine_handle.h43 __handle_ = nullptr;
49 constexpr void* address() const noexcept { return __handle_; }
54 __tmp.__handle_ = __addr;
61 return __handle_ != nullptr;
67 return __builtin_coro_done(__handle_);
78 __builtin_coro_resume(__handle_);
84 __builtin_coro_destroy(__handle_);
90 return __handle_ != nullptr;
93 void* __handle_ = nullptr;
119 __tmp.__handle_ =
[all …]
Dnoop_coroutine_handle.h57 __builtin_coro_promise(this->__handle_, alignof(noop_coroutine_promise), false));
62 constexpr void* address() const noexcept { return __handle_; }
70 this->__handle_ = __builtin_coro_noop();
73 void* __handle_ = nullptr;
88 void* __handle_ = &__noop_coroutine_frame_;
/external/libcxx/include/experimental/
Dcoroutine97 _LIBCPP_CONSTEXPR coroutine_handle() _NOEXCEPT : __handle_(nullptr) {}
100 _LIBCPP_CONSTEXPR coroutine_handle(nullptr_t) _NOEXCEPT : __handle_(nullptr) {}
104 __handle_ = nullptr;
109 _LIBCPP_CONSTEXPR void* address() const _NOEXCEPT { return __handle_; }
112 _LIBCPP_CONSTEXPR explicit operator bool() const _NOEXCEPT { return __handle_; }
123 __builtin_coro_resume(__handle_);
130 __builtin_coro_destroy(__handle_);
137 return __builtin_coro_done(__handle_);
144 __tmp.__handle_ = __addr;
164 return __handle_;
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/include/__format/
Dformat_arg.h141 typename basic_format_arg<_Context>::handle{__arg.__value_.__handle_}); in decltype()
197 __handle __handle_; member
224 : __handle_(std::forward<__handle>(__value)) {} in __basic_format_arg_value()
267 __handle_.__format_(__parse_ctx, __ctx, __handle_.__ptr_); in format()
271 : __handle_(__handle) {} in handle()
274 typename __basic_format_arg_value<_Context>::__handle& __handle_;