Home
last modified time | relevance | path

Searched refs:Iter (Results 1 – 22 of 22) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/
H A Daddr.rs47 type Iter: Iterator<Item = SocketAddr>; typedef
83 type Iter = option::IntoIter<SocketAddr>; typedef
91 type Iter = option::IntoIter<SocketAddr>; typedef
99 type Iter = option::IntoIter<SocketAddr>; typedef
107 type Iter = option::IntoIter<SocketAddr>; typedef
119 type Iter = option::IntoIter<SocketAddr>; typedef
137 type Iter = vec::IntoIter<SocketAddr>; typedef
162 type Iter = vec::IntoIter<SocketAddr>; typedef
179 type Iter = std::iter::Cloned<std::slice::Iter<'a, SocketAddr>>; typedef
187 type Iter = vec::IntoIter<SocketAddr>; typedef
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/frame_analyzer/export/
H A Dring_queue.h58 class Iter {
60 Iter(Array *ptr, int offset) in Iter() function
65 Iter &operator++()
73 Iter operator++(int)
92 bool operator==(const Iter &rhs)
97 bool operator!=(const Iter &rhs)
156 Iter begin() in begin()
158 return Iter(&queue_, front_); in begin()
161 Iter end() in end()
163 return Iter(&queue_, back_); in end()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/
H A Diterator.h250 template<typename Iter>
257 using iterator_type = Iter;
360 Iter it_;
363 template<class Iter>
366 using iterator_type = Iter;
370 using pointer = Iter;
461 Iter current_;
500 template<class Iter>
501 constexpr move_iterator<Iter> operator+(typename move_iterator<Iter>::difference_type n, const move…
512 template<class Iter>
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/include/
H A Dcamera_util.h194 template<typename Iter>
196 typename std::enable_if<std::is_convertible<typename std::iterator_traits<Iter>::value_type,
197 typename std::iterator_traits<Iter>::value_type>::value,
200 template<typename Iter>
201 return_container_iter_string_value<Iter> Container2String(Iter first, Iter last) in Container2String()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/
H A Dhash.h162 template<typename Iter>
163 inline uint64_t HashRange(Iter first, Iter last) in HashRange()
173 template<typename Iter>
174 inline void HashRange(uint64_t& seed, Iter first, Iter last) in HashRange()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/pariter/
H A Dzip.rs44 type Iter = iter::Zip<A::Iter, B::Iter>; typedef
71 fn iter(self) -> Self::Iter { in iter() argument
H A Dfilter.rs31 type Iter = iter::Filter<P::Iter, F>; typedef
59 fn iter(self) -> Self::Iter { in iter() argument
H A Dmap.rs37 type Iter = iter::Map<P::Iter, F>; typedef
62 fn iter(self) -> Self::Iter { in iter() argument
H A Dmod.rs39 type Iter: Iterator<Item = Self::Item>; typedef
52 fn iter(self) -> Self::Iter; in iter() argument
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/src/
H A Dv4l2_buffer.cpp232 auto Iter = bufferMap.find(buf.index); in V4L2DequeueBuffer() local
233 if (Iter == bufferMap.end()) { in V4L2DequeueBuffer()
239 bufferMap.erase(Iter); in V4L2DequeueBuffer()
244 dumper.DumpBuffer("DQBuffer", ENABLE_DQ_BUFFER_DUMP, Iter->second->buffer_); in V4L2DequeueBuffer()
246 dequeueBuffer_(Iter->second); in V4L2DequeueBuffer()
247 bufferMap.erase(Iter); in V4L2DequeueBuffer()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/parallel/
H A Dmod.rs107 type Iter = T::IntoIter; typedef
119 fn iter(self) -> Self::Iter { in iter() argument
/ohos5.0/commonlibrary/rust/ylong_json/src/value/object/
H A Dbtree.rs16 use std::collections::btree_map::{BTreeMap, Iter, IterMut};
143 pub fn iter(&self) -> Iter<'_, String, JsonValue> { in iter()
H A Dvec.rs16 use core::slice::{Iter, IterMut};
150 pub fn iter(&self) -> Iter<'_, (String, JsonValue)> { in iter()
H A Dlinked_list.rs14 use crate::{Cursor, CursorMut, Iter, IterMut, JsonValue, LinkedList, Node};
147 pub fn iter(&self) -> Iter<'_, (String, JsonValue)> { in iter()
/ohos5.0/commonlibrary/rust/ylong_json/src/value/array/
H A Dvec.rs16 use core::slice::{Iter, IterMut};
125 pub fn iter(&self) -> Iter<'_, JsonValue> { in iter()
H A Dlinked_list.rs14 use crate::{Cursor, CursorMut, Iter, IterMut, JsonValue, LinkedList, Node};
126 pub fn iter(&self) -> Iter<'_, JsonValue> { in iter()
/ohos5.0/commonlibrary/rust/ylong_json/src/
H A Dlinked_list.rs95 pub(crate) fn iter(&self) -> Iter<'_, T> { in iter()
96 Iter { in iter()
323 pub struct Iter<'a, T: 'a> { struct
330 impl<'a, T> Iterator for Iter<'a, T> { argument
358 impl<'a, T> DoubleEndedIterator for Iter<'a, T> { implementation
H A Dlib.rs81 pub use linked_list::{Iter, IterMut, Node};
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/dns/
H A Dhappy_eyeballs.rs56 iter: core::slice::Iter<'a, SocketAddr>,
80 type Target = core::slice::Iter<'a, SocketAddr>;
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/
H A Dheaders.rs532 pub type HeaderValueIter<'a> = slice::Iter<'a, Vec<u8>>;
914 pub type HeadersIter<'a> = hash_map::Iter<'a, HeaderName, HeaderValue>;
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/body/
H A Dchunk.rs726 iter: core::slice::Iter<'a, Chunk<'a>>,
735 fn new<'a>(iter: core::slice::Iter<'a, Chunk<'a>>) -> ChunksIter<'a> { in new()
741 type Target = core::slice::Iter<'a, Chunk<'a>>;
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/
H A Ddecoder.rs70 iter: core::slice::Iter<'a, FrameKind>,
109 type Target = core::slice::Iter<'a, FrameKind>;