Home
last modified time | relevance | path

Searched refs:_Value (Results 1 – 9 of 9) sorted by relevance

/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/
H A D__as_awaitable.hpp44 template <class _Value>
45 using __value_or_void_t = __if_c<__same_as<_Value, void>, __void, _Value>;
47 template <class _Value>
49 std::variant<std::monostate, __value_or_void_t<_Value>, std::exception_ptr>;
51 template <class _Value>
57 requires constructible_from<__value_or_void_t<_Value>, _Us...>
86 __expected_t<_Value>* __result_;
90 template <class _PromiseId, class _Value>
95 struct __t : __receiver_base<_Value>
145 template <class _Value>
[all …]
H A D__env.hpp454 template <class _Query, class _Value>
464 _Value __value;
467 constexpr const _Value& query(_Query) const noexcept in query()
475 template <class _Query, class _Value>
476 prop(_Query, _Value) -> prop<_Query, std::unwrap_reference_t<_Value>>;
559 template <class _Value, class _Tag, class... _Tags>
565 _Value __value_;
569 constexpr explicit __with(_Value __value) noexcept( in __with()
570 __nothrow_decay_copyable<_Value>) : in __with()
571 __value_(static_cast<_Value&&>(__value)) in __with()
[all …]
H A D__with_awaitable_senders.hpp139 template <class _Value>
140 auto await_transform(_Value&& __val) in await_transform()
141 -> __call_result_t<as_awaitable_t, _Value, _Promise&> in await_transform()
144 return as_awaitable(static_cast<_Value&&>(__val), in await_transform()
H A D__stopped_as_optional.hpp81 using _Value = __decay_t< typedef
83 return __mtype<_Value>();
H A D__execution_fwd.hpp56 template <class _Query, class _Value>
H A D__meta.hpp47 template <auto _Value>
48 using __mtypeof = decltype(_Value);
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/
H A Denv.hpp25 template <class _Tag, class _Value>
26 using with_t = stdexec::prop<_Tag, _Value>;
32 template <class _Tag, class _Value>
33 auto operator()(_Tag, _Value&& __val) const in operator ()()
35 return stdexec::prop{_Tag(), static_cast<_Value&&>(__val)}; in operator ()()
H A Dat_coroutine_exit.hpp130 template <class _Value>
131 auto operator()(_Value&& __value) const noexcept -> _Value&& in operator ()()
133 return static_cast<_Value&&>(__value); in operator ()()
/openbmc/qemu/scripts/qapi/
H A Dintrospect.py64 _Value = Union[_Scalar, _NonScalar] variable
65 JSONValue = Union[_Value, 'Annotated[_Value]']
79 _ValueT = TypeVar('_ValueT', bound=_Value)