Home
last modified time | relevance | path

Searched refs:parse_decimal (Results 1 - 1 of 1) sorted by relevance

/third_party/rust/crates/regex/regex-syntax/src/ast/
H A Dparse.rs1107 self.parse_decimal(), in parse_counted_repetition()
1127 self.parse_decimal(), in parse_counted_repetition()
1705 fn parse_decimal(&self) -> Result<u32> { in parse_decimal() functions
4633 fn parse_decimal() { in parse_decimal() functions
4634 assert_eq!(parser("123").parse_decimal(), Ok(123)); in parse_decimal()
4635 assert_eq!(parser("0").parse_decimal(), Ok(0)); in parse_decimal()
4636 assert_eq!(parser("01").parse_decimal(), Ok(1)); in parse_decimal()
4639 parser("-1").parse_decimal().unwrap_err(), in parse_decimal()
4643 parser("").parse_decimal().unwrap_err(), in parse_decimal()
4647 parser("9999999999").parse_decimal() in parse_decimal()
[all...]

Completed in 5 milliseconds