Lines Matching refs:Locations
9 /// Locations represents the offsets of each capturing group in a regex for
12 /// Unlike `Captures`, a `Locations` value only stores offsets.
15 pub struct Locations(Vec<Slot>);
17 impl Locations {
60 locs: &'c Locations,
113 fn locations(&self) -> Locations {
114 Locations(vec![None; self.slots_len()])
145 locs: &mut Locations,
261 type Item = Locations;
263 fn next(&mut self) -> Option<Locations> {