Searched refs:is_hex_digit (Results 1 – 10 of 10) sorted by relevance
464 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 …]
406 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 …]
51 pub fn is_hex_digit(chr: u8) -> bool { in is_hex_digit() function
17 fn is_hex_digit(c: char) -> bool { in is_hex_digit() function22 map_res(take_while_m_n(2, 2, is_hex_digit), from_hex)(input) in hex_primary()
167 fn is_hex_digit(self) -> bool; in is_hex_digit() method192 fn is_hex_digit(self) -> bool { in is_hex_digit() method224 fn is_hex_digit(self) -> bool { in is_hex_digit() method257 fn is_hex_digit(self) -> bool { in is_hex_digit() method288 fn is_hex_digit(self) -> bool { in is_hex_digit() method
85 inline bool is_hex_digit(const char c) { in is_hex_digit() function120 if (first + 1 != last && first + 2 != last && is_hex_digit(*(first + 1)) && in percent_decode()121 is_hex_digit(*(first + 2))) { in percent_decode()
1810 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()
1458 is_hex_digit(*(first + 1)) && is_hex_digit(*(first + 2))) { in percent_decode()1548 if (!is_hex_digit(c)) { in is_hex_string()
63 fn is_hex_digit(c: char) -> bool {69 take_while_m_n(2, 2, is_hex_digit),
123 - [`is_hex_digit`](https://docs.rs/nom/latest/nom/character/fn.is_hex_digit.html): Tests if byte is…