Home
last modified time | relevance | path

Searched refs:try_for_each (Results 1 – 11 of 11) sorted by relevance

/external/rust/crates/gdbstub/src/protocol/
Dresponse_writer.rs76 data.iter().try_for_each(|b| self.write(*b)) in write_all()
99 data.iter().try_for_each(|b| self.write_hex(*b)) in write_hex_buf()
104 data.iter().try_for_each(|b| match b { in write_binary()
127 .try_for_each(|b| self.write_hex(b)) in write_num()
/external/rust/crates/itertools/src/
Dformat.rs62 iter.try_for_each(|elt| { in fmt()
86 iter.try_for_each(|elt| { in format()
/external/rust/crates/codespan-reporting/src/term/
Drenderer.rs302 '\t' => (0..metrics.unicode_width).try_for_each(|_| write!(self, " "))?, in render_snippet_source()
450 (0..metrics.unicode_width).try_for_each(|_| write!(self, "{}", caret_ch))?; in render_snippet_source()
768 spaces.try_for_each(|_| write!(self, " "))?; in caret_pointers()
855 .try_for_each(|_| write!(self, "{}", self.chars().multi_top))?; in label_multi_top_caret()
889 .try_for_each(|_| write!(self, "{}", self.chars().multi_bottom))?; in label_multi_bottom_caret()
/external/rust/crates/futures-util/src/stream/try_stream/
Dmod.rs72 mod try_for_each; module
74 pub use self::try_for_each::TryForEach;
408 fn try_for_each<Fut, F>(self, f: F) -> TryForEach<Self, Fut, F> in try_for_each() method
/external/crosvm/devices/src/virtio/video/
Dresponse.rs107 descs.iter().try_for_each(|d| d.write(w)) in write()
Dformat.rs230 self.frame_formats.iter().try_for_each(|ff| ff.write(w)) in write()
/external/rust/crates/pin-project-internal/src/
Dpinned_drop.rs84 item.items.iter().enumerate().try_for_each(|(i, item)| match item { in validate_impl()
/external/rust/crates/rayon/
DRELEASES.md237 and `try_for_each`, plus `*_with()` variants of each, for automatically
239 `Iterator::try_fold()` and `try_for_each()` that were stabilized in Rust 1.27.
/external/crosvm/cros_async/src/sync/
Dcv.rs520 .try_for_each(JoinHandle::join) in multi_mutex()
/external/crosvm/devices/src/virtio/
Ddescriptor_utils.rs555 iter.try_for_each(|v| self.write_obj(v)) in write_iter()
/external/rust/crates/rayon/src/iter/
Dmod.rs457 fn try_for_each<OP, R>(self, op: OP) -> R in try_for_each() method