Home
last modified time | relevance | path

Searched refs:partition_map (Results 1 – 7 of 7) sorted by relevance

/external/autotest/client/cros/faft/utils/
Dkernel_handler.py43 self.partition_map = {}
85 self.partition_map[label] = part_info
93 dev = self.partition_map[section.upper()]['device']
104 dev = self.partition_map[section.upper()]['device']
172 return self.partition_map[section.upper()]['version']
176 return self.partition_map[section.upper()]['datakey_version']
181 dev = self.partition_map[section.upper()]['device']
/external/rust/crates/itertools/
DCHANGELOG.md69 …Loosened the bounds on [`.partition_map()`](https://docs.rs/itertools/0.8.1/itertools/trait.Iterto…
227 - Add `.partition_map()`, an iterator method that can separate elements into two collections.
/external/rust/crates/rayon/src/iter/
Dunzip.rs155 pub(super) fn partition_map<I, A, B, P, L, R>(pi: I, predicate: P) -> (A, B) in partition_map() function
Dmod.rs2092 fn partition_map<A, B, P, L, R>(self, predicate: P) -> (A, B) in partition_map() method
2100 unzip::partition_map(self, predicate) in partition_map()
Dtest.rs1870 .partition_map(|s| match s.parse::<i32>() { in check_partition_map()
/external/rust/crates/rayon/
DRELEASES.md202 `unzip()` and `partition_map()` operations. For instance, `(A, (B, C))`
205 - `ParallelExtend<Either<A, B>>` works like `partition_map()`.
338 - `Either` (used by `ParallelIterator::partition_map`) is now re-exported from
/external/rust/crates/itertools/src/
Dlib.rs2486 fn partition_map<A, B, F, L, R>(self, mut predicate: F) -> (A, B) in partition_map() method