Searched refs:tup (Results 1 - 4 of 4) sorted by relevance
/foundation/resourceschedule/ffrt/interfaces/inner_api/cpp/ |
H A D | thread.h | 33 auto tup = new Target(std::forward<Fn>(fn), std::forward<Args>(args)...); in thread() 34 *is_joinable = ffrt::submit_h([tup]() { in thread() 35 execute(*tup, std::make_index_sequence<std::tuple_size_v<Target>>()); in thread() 36 delete tup; in thread() 46 auto tup = new Target(std::forward<Fn>(fn), std::forward<Args>(args)...); in thread() 47 *is_joinable = ffrt::submit_h([tup]() { in thread() 48 execute(*tup, std::make_index_sequence<std::tuple_size_v<Target>>()); in thread() 49 delete tup; in thread() 61 auto tup = new Target (std::forward<Fn>(fn), std::forward<Args>(args)...); in thread() 62 *is_joinable = ffrt::submit_h([tup]() { in thread() 112 execute(Target& tup, std::index_sequence<Idxs...>) execute() argument [all...] |
/foundation/arkui/napi/interfaces/inner_api/cjffi/native/ |
H A D | cj_lambda.h | 36 static void* GetElementAddr(T& tup, size_t idx) in GetElementAddr() 39 return &(std::get<I - 1>(tup)); in GetElementAddr() 41 return TupleRuntimeHelper<I - 1>::GetElementAddr(tup, idx); in GetElementAddr() 49 static void* GetElementAddr(T& tup, size_t idx) in GetElementAddr() 57 static inline void* GetElementAddr(std::tuple<Types...> const& tup, size_t idx) in GetElementAddr() argument 59 return TupleRuntimeHelper<sizeof...(Types)>::GetElementAddr(tup, idx); in GetElementAddr() 63 static inline void* GetElementAddr(std::tuple<Types...>& tup, size_t idx) in GetElementAddr() argument 65 return TupleRuntimeHelper<sizeof...(Types)>::GetElementAddr(tup, idx); in GetElementAddr()
|
/foundation/arkui/ace_engine/frameworks/bridge/common/utils/ |
H A D | function_traits.h | 44 auto CallMemberFunction(C* instance, R (C::*func)(Types...), Tuple&& tup) in CallMemberFunction() argument 46 return CallMemberFunction(instance, func, std::forward<Tuple>(tup), std::make_index_sequence<sizeof...(Types)> {}); in CallMemberFunction() 56 auto CallStaticMemberFunction(R (*func)(Types...), Tuple&& tup) in CallStaticMemberFunction() argument 58 return CallStaticMemberFunction(func, std::forward<Tuple>(tup), std::make_index_sequence<sizeof...(Types)> {}); in CallStaticMemberFunction()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | ui_node.cpp | 1411 [child](const auto& tup) { return std::get<0>(tup) == child; }); in AddDisappearingChild() 1429 [child](const auto& tup) { return std::get<0>(tup) == child; }); in RemoveDisappearingChild() 1455 [](const auto& tup) { return std::get<0>(tup)->RemoveImmediately(); }); in RemoveImmediately()
|
Completed in 4 milliseconds