/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/ |
H A D | spawn.rs | 39 for (times, handle) in handles.into_iter().enumerate() { in sdv_one_core_test() 56 for (times, handle) in handles.into_iter().enumerate() { in sdv_two_core_test() 73 for (times, handle) in handles.into_iter().enumerate() { in sdv_three_core_test() 90 for (times, handle) in handles.into_iter().enumerate() { in sdv_four_core_test() 107 for (times, handle) in handles.into_iter().enumerate() { in sdv_eight_core_test() 124 for (times, handle) in handles.into_iter().enumerate() { in sdv_max_core_test() 141 for (times, handle) in handles.into_iter().enumerate() { in sdv_multi_future_in_async() 159 for (times, handle) in handles.into_iter().enumerate() { in sdv_multi_async_in_async()
|
H A D | spawn_blocking.rs | 35 for (times, handle) in handles.into_iter().enumerate() { in ffrt_spawn_blocking_test() 49 for (times, handle) in handles.into_iter().enumerate() { in ffrt_spawn_blocking_test() 75 for (times, handle) in handles.into_iter().enumerate() { in test_spawn() 88 for (times, handle) in handles.into_iter().enumerate() { in test_spawn() 102 for (times, handle) in handles.into_iter().enumerate() { in test_spawn()
|
H A D | async_pool.rs | 149 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_001() 209 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_002() 269 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_003() 329 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_004() 389 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_005() 449 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_006() 509 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_007() 569 for (times, handle) in handles.into_iter().enumerate() { in sdv_async_pool_008()
|
H A D | singleton_runtime.rs | 52 for (times, handle) in handles.into_iter().enumerate() { in sdv_concurrently_runtime_spawn_async_in_async_task() 80 for (times, handle) in handles.into_iter().enumerate() { in sdv_concurrently_spawn_async_in_async_task() 109 for (times, handle) in handles.into_iter().enumerate() { in sdv_concurrently_task_builder_spawn_async_in_async_task()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime_macros/src/ |
H A D | select.rs | 83 builder.except_index = group.stream().into_iter().count(); in parse_group() 119 let buf = input.into_iter().collect::<Vec<_>>(); in tuple_parser() 132 match inner.into_iter().next() { in group_num()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/ |
H A D | addr.rs | 86 State::Ready(Ok(Some(*self).into_iter())) in to_socket_addrs() 144 return State::Ready(Ok(vec![SocketAddr::V4(addr)].into_iter())); in to_socket_addrs() 149 return State::Ready(Ok(vec![SocketAddr::V6(addr)].into_iter())); in to_socket_addrs() 166 return State::Ready(Ok(vec![addr].into_iter())); in to_socket_addrs()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/common/ |
H A D | headers.rs | 39 pub(crate) into_iter: IntoIter<HeaderName, HeaderValue>, 49 into_iter: headers.into_iter(), in new() 59 HeaderStatus::Start => match self.into_iter.next() { in check_next()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/parallel/collections/ |
H A D | binary_heap.rs | 19 par_vec_impl!(BinaryHeap<T>, Vec<T>, into_iter, impl <T>);
|
H A D | btree_set.rs | 19 par_vec_impl!(BTreeSet<T>, Vec<T>, into_iter, impl <T>);
|
H A D | hash_set.rs | 19 par_vec_impl!(HashSet<T>, Vec<T>, into_iter, impl <T>);
|
H A D | linked_list.rs | 19 par_vec_impl!(LinkedList<T>, Vec<T>, into_iter, impl <T>);
|
H A D | vec_deque.rs | 18 par_vec_impl!(VecDeque<T>, Vec<T>, into_iter, impl <T>);
|
H A D | btree_map.rs | 19 par_vec_impl!(BTreeMap<T, V>, Vec<(T,V)>, into_iter, impl <T, V>);
|
H A D | hash_map.rs | 19 par_vec_impl!(HashMap<T, V>, Vec<(T, V)>, into_iter, impl <T, V>);
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/ |
H A D | headers.rs | 873 fn into_iter(self) -> Self::IntoIter { in into_iter() method 874 self.map.into_iter() in into_iter() 882 fn into_iter(self) -> Self::IntoIter { in into_iter() method 891 fn into_iter(self) -> Self::IntoIter { in into_iter() method
|
/ohos5.0/base/request/request/services/src/task/ |
H A D | client.rs | 63 for cert in certs.into_iter() { in build_client() 70 for cert in certificates.into_iter() { in build_client()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/ |
H A D | http_body.rs | 286 for chunk in chunks.into_iter() { in merge_chunks() 311 for (ptr, len) in ptrs.into_iter() { in merge_chunks()
|
H A D | pool.rs | 80 for dispatcher in curr.into_iter() { in conn()
|
/ohos5.0/base/request/request/services/src/manage/ |
H A D | database.rs | 117 .into_iter() in query_integer() 139 let v: Vec<i64> = rows.into_iter().map(|a| a.unwrap()).collect(); in query_integer() 140 v.into_iter() in query_integer() 541 rows.into_iter().map(|info| info.unwrap()).collect() in get_app_task_qos_infos_inner()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/parallel/ |
H A D | mod.rs | 120 self.data.into_iter() in iter()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/ |
H A D | chunk.rs | 359 for (name, value) in trailer_headers.into_iter() { in set_trailer() 731 into_iter: std::vec::IntoIter<Chunk<'a>>, field 755 fn new(into_iter: std::vec::IntoIter<Chunk>) -> ChunksIntoIter { in new() 756 ChunksIntoIter { into_iter } in new() 764 self.into_iter.next() in next() 772 &self.into_iter in deref() 795 fn into_iter(self) -> Self::IntoIter { in into_iter() method 796 ChunksIntoIter::new(self.chunks.into_iter()) in into_iter() 1923 let mut iter = chunks.into_iter(); in ut_chunk_body_decode_2()
|
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/src/service_impl/ |
H A D | cloud_db.rs | 151 for value_bucket in ret.into_iter().flatten() { in batch_delete() 309 for value_bucket in ret.into_iter().flatten() { in upload()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/ |
H A D | events.rs | 110 fn into_iter(self) -> Self::IntoIter { in into_iter() method
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/ |
H A D | decoder.rs | 75 into_iter: std::vec::IntoIter<FrameKind>, field 135 self.into_iter.next() in next() 143 fn into_iter(self) -> Self::IntoIter { in into_iter() method 145 into_iter: self.list.into_iter(), in into_iter()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ |
H A D | stack.rs | 171 fn into_iter(self) -> IntoStackIter<T> { in into_iter() method
|