/ohos5.0/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() local 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() local 47 *is_joinable = ffrt::submit_h([tup]() { in thread() 49 delete tup; in thread() 62 *is_joinable = ffrt::submit_h([tup]() { 64 delete tup; 112 static inline void execute(Target& tup, in execute() argument [all …]
|
/ohos5.0/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) 57 static inline void* GetElementAddr(std::tuple<Types...> const& tup, size_t idx) 59 return TupleRuntimeHelper<sizeof...(Types)>::GetElementAddr(tup, idx); 63 static inline void* GetElementAddr(std::tuple<Types...>& tup, size_t idx) 65 return TupleRuntimeHelper<sizeof...(Types)>::GetElementAddr(tup, idx);
|
/ohos5.0/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) 46 …return CallMemberFunction(instance, func, std::forward<Tuple>(tup), std::make_index_sequence<sizeo… 56 auto CallStaticMemberFunction(R (*func)(Types...), Tuple&& tup) 58 …return CallStaticMemberFunction(func, std::forward<Tuple>(tup), std::make_index_sequence<sizeof...…
|
/ohos5.0/build/scripts/util/ |
H A D | build_utils.py | 417 for tup in inputs: 418 if isinstance(tup, str): 419 tup = (os.path.relpath(tup, base_dir), tup) 420 input_tuples.append(tup) 423 input_tuples.sort(key=lambda tup: tup[0])
|
/ohos5.0/commonlibrary/rust/ylong_json/docs/ |
H A D | user_guide_zh.md | 50 tup: (i32, i32, i32), 55 let tr = r#"{"int":1,"seq":["abcd","efgh"],"tup":[1,2,3]}"#; 219 tup: (i32, i32, i32), 225 tup: (1, 2, 3),
|
H A D | user_guide.md | 58 tup: (i32, i32, i32), 64 let str = r#"{"int":1,"seq":["abcd","efgh"],"tup":[1,2,3]}"#; 252 tup: (i32, i32, i32), 258 tup: (1, 2, 3),
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | ui_node.cpp | 1330 [child](const auto& tup) { return std::get<0>(tup) == child; }); in AddDisappearingChild() argument 1348 [child](const auto& tup) { return std::get<0>(tup) == child; }); in RemoveDisappearingChild() argument 1374 [](const auto& tup) { return std::get<0>(tup)->RemoveImmediately(); }); in RemoveImmediately() argument
|
/ohos5.0/commonlibrary/rust/ylong_json/src/ |
H A D | serializer_compact.rs | 616 tup: (i32, i32, i32), in ut_serialize_struct() field 622 tup: (1, 2, 3), in ut_serialize_struct()
|
H A D | deserializer.rs | 1064 tup: (i32, i32, i32), in ut_deserialize_struct() field 1071 tup: (1, 2, 3), in ut_deserialize_struct() 1083 tup: (1, 2, 3), in ut_deserialize_struct()
|