Home
last modified time | relevance | path

Searched refs:is_hex_digit (Results 1 – 10 of 10) sorted by relevance

/third_party/rust/crates/nom/src/character/
Dcomplete.rs464 input.split_at_position_complete(|item| !item.is_hex_digit()) in hex_digit0()
488 input.split_at_position1_complete(|item| !item.is_hex_digit(), ErrorKind::HexDigit) in hex_digit1()
1046 assert!(crate::character::is_hex_digit(b'0')); in hex_digit_test()
1047 assert!(crate::character::is_hex_digit(b'9')); in hex_digit_test()
1048 assert!(crate::character::is_hex_digit(b'a')); in hex_digit_test()
1049 assert!(crate::character::is_hex_digit(b'f')); in hex_digit_test()
1050 assert!(crate::character::is_hex_digit(b'A')); in hex_digit_test()
1051 assert!(crate::character::is_hex_digit(b'F')); in hex_digit_test()
1052 assert!(!crate::character::is_hex_digit(b'g')); in hex_digit_test()
1053 assert!(!crate::character::is_hex_digit(b'G')); in hex_digit_test()
[all …]
Dstreaming.rs406 input.split_at_position(|item| !item.is_hex_digit()) in hex_digit0()
427 input.split_at_position1(|item| !item.is_hex_digit(), ErrorKind::HexDigit) in hex_digit1()
1012 assert!(crate::character::is_hex_digit(b'0')); in hex_digit_test()
1013 assert!(crate::character::is_hex_digit(b'9')); in hex_digit_test()
1014 assert!(crate::character::is_hex_digit(b'a')); in hex_digit_test()
1015 assert!(crate::character::is_hex_digit(b'f')); in hex_digit_test()
1016 assert!(crate::character::is_hex_digit(b'A')); in hex_digit_test()
1017 assert!(crate::character::is_hex_digit(b'F')); in hex_digit_test()
1018 assert!(!crate::character::is_hex_digit(b'g')); in hex_digit_test()
1019 assert!(!crate::character::is_hex_digit(b'G')); in hex_digit_test()
[all …]
Dmod.rs51 pub fn is_hex_digit(chr: u8) -> bool { in is_hex_digit() function
/third_party/rust/crates/nom/tests/
Dcss.rs17 fn is_hex_digit(c: char) -> bool { in is_hex_digit() function
22 map_res(take_while_m_n(2, 2, is_hex_digit), from_hex)(input) in hex_primary()
/third_party/rust/crates/nom/src/
Dtraits.rs167 fn is_hex_digit(self) -> bool; in is_hex_digit() method
192 fn is_hex_digit(self) -> bool { in is_hex_digit() method
224 fn is_hex_digit(self) -> bool { in is_hex_digit() method
257 fn is_hex_digit(self) -> bool { in is_hex_digit() method
288 fn is_hex_digit(self) -> bool { in is_hex_digit() method
/third_party/nghttp2/src/
Dutil.h85 inline bool is_hex_digit(const char c) { in is_hex_digit() function
120 if (first + 1 != last && first + 2 != last && is_hex_digit(*(first + 1)) && in percent_decode()
121 is_hex_digit(*(first + 2))) { in percent_decode()
Dhttp2.cc1810 if (util::is_hex_digit(*(it + 1)) && util::is_hex_digit(*(it + 2))) { in normalize_path()
1857 if (util::is_hex_digit(*(it + 1)) && util::is_hex_digit(*(it + 2))) { in normalize_path_colon()
Dutil.cc1458 is_hex_digit(*(first + 1)) && is_hex_digit(*(first + 2))) { in percent_decode()
1548 if (!is_hex_digit(c)) { in is_hex_string()
/third_party/rust/crates/nom/
DREADME.md63 fn is_hex_digit(c: char) -> bool {
69 take_while_m_n(2, 2, is_hex_digit),
/third_party/rust/crates/nom/doc/
Dchoosing_a_combinator.md123 - [`is_hex_digit`](https://docs.rs/nom/latest/nom/character/fn.is_hex_digit.html): Tests if byte is…