Searched refs:u16_hex (Results 1 - 2 of 2) sorted by relevance
/third_party/rust/crates/nom/tests/ |
H A D | json.rs | 31 fn u16_hex(input: &str) -> IResult<&str, u16> { in u16_hex() functions 39 map(verify(u16_hex, |cp| !(0xD800..0xE000).contains(cp)), |cp| { in unicode_escape() 45 separated_pair(u16_hex, tag("\\u"), u16_hex), in unicode_escape()
|
/third_party/rust/crates/nom/benchmarks/benches/ |
H A D | json.rs | 36 fn u16_hex(input: &str) -> IResult<&str, u16> { in u16_hex() functions 44 map(verify(u16_hex, |cp| !(0xD800..0xE000).contains(cp)), |cp| { in unicode_escape() 50 separated_pair(u16_hex, tag("\\u"), u16_hex), in unicode_escape()
|
Completed in 2 milliseconds