Searched refs:start_bound (Results 1 – 4 of 4) sorted by relevance
/third_party/rust/crates/clap/src/builder/ |
D | range.rs | 104 fn start_bound(&self) -> std::ops::Bound<&usize> { in start_bound() method 199 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_fixed() 210 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_fixed_empty() 221 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range() 232 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range_inclusive() 243 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_range_full() 254 assert_eq!(range.start_bound(), std::ops::Bound::Included(&5)); in from_range_from() 265 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_range_to() 276 assert_eq!(range.start_bound(), std::ops::Bound::Included(&0)); in from_range_to_inclusive()
|
D | value_parser.rs | 1268 let start = match range.start_bound() { in range() 1287 std::ops::Bound::Unbounded => self.bounds.start_bound().cloned(), in range() 1401 bounds: (range.start_bound().cloned(), range.end_bound().cloned()), in from() 1466 let start = match range.start_bound() { in range() 1485 std::ops::Bound::Unbounded => self.bounds.start_bound().cloned(), in range() 1597 bounds: (range.start_bound().cloned(), range.end_bound().cloned()), in from()
|
/third_party/rust/crates/proc-macro2/src/ |
D | fallback.rs | 1065 let lo = match range.start_bound() { in subspan()
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 6214 fn start_bound(&self) -> Bound<&usize> { 6237 fn start_bound(&self) -> Bound<&usize> { 17793 let start = range.start_bound(); 29620 let (start, end) = (range.start_bound(), range.end_bound());
|