/external/rust/crates/rayon/src/iter/collect/ |
D | test.rs | 24 let mut folder = consumer.into_folder(); in produce_too_many_items() 40 let mut folder = consumer.into_folder(); in produce_fewer_items() 55 let mut left_folder = left_consumer.into_folder(); in left_produces_items_with_no_complete() 56 let mut right_folder = right_consumer.into_folder(); in left_produces_items_with_no_complete() 72 let mut left_folder = left_consumer.into_folder(); in right_produces_items_with_no_complete() 73 let mut right_folder = right_consumer.into_folder(); in right_produces_items_with_no_complete() 88 let mut folder = consumer.into_folder(); in produces_items_with_no_complete() 108 let mut left_folder = left_consumer.into_folder(); in left_produces_too_many_items() 109 let mut right_folder = right_consumer.into_folder(); in left_produces_too_many_items() 126 let mut left_folder = left_consumer.into_folder(); in right_produces_too_many_items() [all …]
|
/external/rust/crates/rayon/src/iter/find_first_last/ |
D | test.rs | 24 let left_folder = consumer.split_off_left().into_folder(); in same_range_first_consumers_return_correct_answer() 25 let right_folder = consumer.into_folder(); in same_range_first_consumers_return_correct_answer() 61 let left_folder = consumer.split_off_left().into_folder(); in same_range_last_consumers_return_correct_answer() 62 let right_folder = consumer.into_folder(); in same_range_last_consumers_return_correct_answer()
|
/external/rust/crates/rayon/src/iter/plumbing/ |
D | mod.rs | 146 fn into_folder(self) -> Self::Folder; in into_folder() method 411 consumer.into_folder().complete() in bridge_producer_consumer() 438 producer.fold_with(consumer.into_folder()).complete() in bridge_producer_consumer() 466 consumer.into_folder().complete() in bridge_unindexed_producer_consumer() 479 (producer, None) => producer.fold_with(consumer.into_folder()).complete(), in bridge_unindexed_producer_consumer() 482 producer.fold_with(consumer.into_folder()).complete() in bridge_unindexed_producer_consumer()
|
/external/rust/crates/rayon/src/iter/ |
D | fold.rs | 92 fn into_folder(self) -> Self::Folder { in into_folder() function 94 base: self.base.into_folder(), in into_folder() 272 fn into_folder(self) -> Self::Folder { in into_folder() function 274 base: self.base.into_folder(), in into_folder()
|
D | try_fold.rs | 98 fn into_folder(self) -> Self::Folder { in into_folder() function 100 base: self.base.into_folder(), in into_folder() 263 fn into_folder(self) -> Self::Folder { in into_folder() function 265 base: self.base.into_folder(), in into_folder()
|
D | flatten.rs | 73 fn into_folder(self) -> Self::Folder { in into_folder() function 133 None => self.base.into_folder().complete(), in complete()
|
D | flatten_iter.rs | 75 fn into_folder(self) -> Self::Folder { in into_folder() function 77 base: self.base.into_folder(), in into_folder()
|
D | positions.rs | 91 fn into_folder(self) -> Self::Folder { in into_folder() function 93 base: self.base.into_folder(), in into_folder()
|
D | while_some.rs | 77 fn into_folder(self) -> Self::Folder { in into_folder() function 79 base: self.base.into_folder(), in into_folder()
|
D | filter.rs | 82 fn into_folder(self) -> Self::Folder { in into_folder() function 84 base: self.base.into_folder(), in into_folder()
|
D | filter_map.rs | 82 fn into_folder(self) -> Self::Folder { in into_folder() function 83 let base = self.base.into_folder(); in into_folder()
|
D | flat_map.rs | 81 fn into_folder(self) -> Self::Folder { in into_folder() function 147 None => self.base.into_folder().complete(), in complete()
|
D | flat_map_iter.rs | 84 fn into_folder(self) -> Self::Folder { in into_folder() function 86 base: self.base.into_folder(), in into_folder()
|
D | noop.rs | 14 fn into_folder(self) -> Self { in into_folder() method
|
D | copied.rs | 166 fn into_folder(self) -> Self::Folder { in into_folder() function 168 base: self.base.into_folder(), in into_folder()
|
D | cloned.rs | 166 fn into_folder(self) -> Self::Folder { in into_folder() function 168 base: self.base.into_folder(), in into_folder()
|
D | once.rs | 54 consumer.into_folder().consume(self.item).complete() in drive()
|
D | inspect.rs | 194 fn into_folder(self) -> Self::Folder { in into_folder() function 196 base: self.base.into_folder(), in into_folder()
|
D | for_each.rs | 31 fn into_folder(self) -> Self { in into_folder() function
|
D | map.rs | 197 fn into_folder(self) -> Self::Folder { in into_folder() function 199 base: self.base.into_folder(), in into_folder()
|
D | map_with.rs | 261 fn into_folder(self) -> Self::Folder { in into_folder() function 263 base: self.base.into_folder(), in into_folder() 546 fn into_folder(self) -> Self::Folder { in into_folder() function 548 base: self.base.into_folder(), in into_folder()
|
D | empty.rs | 67 consumer.into_folder().complete() in drive()
|
D | panic_fuse.rs | 258 fn into_folder(self) -> Self::Folder { in into_folder() function 260 base: self.base.into_folder(), in into_folder()
|
D | update.rs | 195 fn into_folder(self) -> Self::Folder { in into_folder() function 197 base: self.base.into_folder(), in into_folder()
|
D | unzip.rs | 324 fn into_folder(self) -> Self::Folder { in into_folder() function 327 left: self.left.into_folder(), in into_folder() 328 right: self.right.into_folder(), in into_folder()
|