Home
last modified time | relevance | path

Searched refs:IterImpl (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/rustversion/src/
Diter.rs3 pub type Iter<'a> = &'a mut IterImpl;
5 pub struct IterImpl { struct
10 pub fn new(tokens: TokenStream) -> IterImpl { in new() argument
11 IterImpl { in new()
17 impl IterImpl { implementation
24 impl Iterator for IterImpl { implementation
/external/rust/crates/proc-macro-hack/src/
Diter.rs3 pub type Iter<'a> = &'a mut IterImpl;
5 pub struct IterImpl { struct
10 pub fn new(tokens: TokenStream) -> IterImpl { in new() argument
11 IterImpl { in new()
17 impl IterImpl { implementation
24 impl Iterator for IterImpl { implementation
Dparse.rs1 use crate::iter::{self, Iter, IterImpl};
127 fn parse_group(tokens: Iter, delimiter: Delimiter) -> Result<IterImpl, Error> { in parse_group() argument
/external/llvm-project/clang/test/Analysis/inlining/
Dcontainers.cpp175 struct IterImpl { struct in BeginOnlySet
179 IterImpl(MySet::iterator i) : impl(i) { in IterImpl() argument
194 typedef IterImpl wrapped_iterator;
201 return IterImpl(impl.begin()); in begin()
/external/clang/test/Analysis/inlining/
Dcontainers.cpp173 struct IterImpl { struct in BeginOnlySet
177 IterImpl(MySet::iterator i) : impl(i) { in IterImpl() function
192 typedef IterImpl wrapped_iterator;
199 return IterImpl(impl.begin()); in begin()
/external/rust/crates/serde_json/src/
Dmap.rs765 iter: IterImpl<'a>,
769 type IterImpl<'a> = btree_map::Iter<'a, String, Value>; typedef
771 type IterImpl<'a> = indexmap::map::Iter<'a, String, Value>; typedef