Home
last modified time | relevance | path

Searched refs:into_folder (Results 1 – 25 of 35) sorted by relevance

12

/external/rust/crates/rayon/src/iter/collect/
Dtest.rs24 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/
Dtest.rs24 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/
Dmod.rs146 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/
Dfold.rs92 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()
Dtry_fold.rs98 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()
Dflatten.rs73 fn into_folder(self) -> Self::Folder { in into_folder() function
133 None => self.base.into_folder().complete(), in complete()
Dflatten_iter.rs75 fn into_folder(self) -> Self::Folder { in into_folder() function
77 base: self.base.into_folder(), in into_folder()
Dpositions.rs91 fn into_folder(self) -> Self::Folder { in into_folder() function
93 base: self.base.into_folder(), in into_folder()
Dwhile_some.rs77 fn into_folder(self) -> Self::Folder { in into_folder() function
79 base: self.base.into_folder(), in into_folder()
Dfilter.rs82 fn into_folder(self) -> Self::Folder { in into_folder() function
84 base: self.base.into_folder(), in into_folder()
Dfilter_map.rs82 fn into_folder(self) -> Self::Folder { in into_folder() function
83 let base = self.base.into_folder(); in into_folder()
Dflat_map.rs81 fn into_folder(self) -> Self::Folder { in into_folder() function
147 None => self.base.into_folder().complete(), in complete()
Dflat_map_iter.rs84 fn into_folder(self) -> Self::Folder { in into_folder() function
86 base: self.base.into_folder(), in into_folder()
Dnoop.rs14 fn into_folder(self) -> Self { in into_folder() method
Dcopied.rs166 fn into_folder(self) -> Self::Folder { in into_folder() function
168 base: self.base.into_folder(), in into_folder()
Dcloned.rs166 fn into_folder(self) -> Self::Folder { in into_folder() function
168 base: self.base.into_folder(), in into_folder()
Donce.rs54 consumer.into_folder().consume(self.item).complete() in drive()
Dinspect.rs194 fn into_folder(self) -> Self::Folder { in into_folder() function
196 base: self.base.into_folder(), in into_folder()
Dfor_each.rs31 fn into_folder(self) -> Self { in into_folder() function
Dmap.rs197 fn into_folder(self) -> Self::Folder { in into_folder() function
199 base: self.base.into_folder(), in into_folder()
Dmap_with.rs261 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()
Dempty.rs67 consumer.into_folder().complete() in drive()
Dpanic_fuse.rs258 fn into_folder(self) -> Self::Folder { in into_folder() function
260 base: self.base.into_folder(), in into_folder()
Dupdate.rs195 fn into_folder(self) -> Self::Folder { in into_folder() function
197 base: self.base.into_folder(), in into_folder()
Dunzip.rs324 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()

12