/external/rust/crates/fallible-iterator/src/ |
D | lib.rs | 481 self.try_fold(init, f) in fold() 488 fn try_fold<B, E, F>(&mut self, mut init: B, mut f: F) -> Result<B, E> in try_fold() method 507 self.try_fold((), |(), v| { in all() 524 self.try_fold((), |(), v| { in any() 541 self.try_fold((), |(), v| { in find() 570 self.try_fold(0, |n, v| { in position() 1221 fn try_fold<C, E, G>(&mut self, init: C, mut f: G) -> Result<C, E> in try_fold() function 1227 self.it.try_fold(init, |b, v| f(b, map(v)?)) in try_fold() 1318 fn try_fold<B, E, F>(&mut self, init: B, mut f: F) -> Result<B, E> in try_fold() function 1325 let init = self.front.try_fold(init, &mut f)?; in try_fold() [all …]
|
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_expr.h | 65 bool try_fold(value *v); 66 bool try_fold(node *n);
|
D | sb_expr.cpp | 132 bool expr_handler::try_fold(value* v) { in try_fold() function in r600_sb::expr_handler 136 try_fold(v->def); in try_fold() 144 bool expr_handler::try_fold(node* n) { in try_fold() function in r600_sb::expr_handler
|
D | sb_valtable.cpp | 150 if (v->def && ex.try_fold(v)) { in add_value()
|
/external/rust/crates/rayon/src/compile_fail/ |
D | must_use.rs | 47 try_fold /** v.par_iter().try_fold(|| 0, |x, _| Some(x)); */
|
/external/rust/crates/futures-util/src/stream/try_stream/ |
D | mod.rs | 96 mod try_fold; module 98 pub use self::try_fold::TryFold; 731 fn try_fold<T, Fut, F>(self, init: T, f: F) -> TryFold<Self, Fut, T, F> in try_fold() method
|
/external/rust/crates/fallible-iterator/ |
D | CHANGELOG.md | 22 …`partition`, `find_map`, `max_by`, `min_by`, `unzip`, `cycle`, and `try_fold` to `FallibleIterator…
|
/external/crosvm/fuzz/ |
D | virtqueue_fuzzer.rs | 104 .try_fold(0u32, |sum, cur| sum.checked_add(cur.len));
|
/external/rust/crates/rayon/tests/ |
D | clones.rs | 125 check(v.par_iter().with_max_len(1).try_fold(|| 0, |_, &x| x)); in clone_adaptors()
|
D | debug.rs | 148 check(v.par_iter().try_fold(|| 0, |x, _| Some(x))); in debug_adaptors()
|
/external/rust/crates/rayon/src/iter/ |
D | mod.rs | 145 mod try_fold; module 185 try_fold::{TryFold, TryFoldWith}, 1310 fn try_fold<T, R, ID, F>(self, identity: ID, fold_op: F) -> TryFold<Self, R, ID, F> in try_fold() method
|
/external/rust/crates/pin-project-internal/src/ |
D | utils.rs | 138 .try_fold((0, None), |(i, mut prev), attr| { in position_exact()
|
/external/rust/crates/pin-project-internal/src/pin_project/ |
D | derive.rs | 305 let has_field = variants.iter().try_fold(false, |has_field, v| { in validate_enum()
|
/external/rust/crates/rayon/ |
D | RELEASES.md | 236 - `ParallelIterator` now has fallible methods `try_fold()`, `try_reduce()`, 239 `Iterator::try_fold()` and `try_for_each()` that were stabilized in Rust 1.27.
|
/external/rust/crates/itertools/ |
D | CHANGELOG.md | 81 - Deprecate `.fold_while()` in favour of std's `.try_fold()`
|
/external/rust/crates/itertools/src/ |
D | lib.rs | 2166 let result = self.try_fold(init, #[inline(always)] |acc, v| in fold_while()
|