Searched refs:is_hex_digit (Results 1 – 7 of 7) sorted by relevance
448 input.split_at_position_complete(|item| !item.is_hex_digit()) in hex_digit0()475 input.split_at_position1_complete(|item| !item.is_hex_digit(), ErrorKind::HexDigit) in hex_digit1()971 assert!(crate::character::is_hex_digit(b'0')); in hex_digit_test()972 assert!(crate::character::is_hex_digit(b'9')); in hex_digit_test()973 assert!(crate::character::is_hex_digit(b'a')); in hex_digit_test()974 assert!(crate::character::is_hex_digit(b'f')); in hex_digit_test()975 assert!(crate::character::is_hex_digit(b'A')); in hex_digit_test()976 assert!(crate::character::is_hex_digit(b'F')); in hex_digit_test()977 assert!(!crate::character::is_hex_digit(b'g')); in hex_digit_test()978 assert!(!crate::character::is_hex_digit(b'G')); in hex_digit_test()[all …]
412 input.split_at_position(|item| !item.is_hex_digit()) in hex_digit0()436 input.split_at_position1(|item| !item.is_hex_digit(), ErrorKind::HexDigit) in hex_digit1()902 assert!(crate::character::is_hex_digit(b'0')); in hex_digit_test()903 assert!(crate::character::is_hex_digit(b'9')); in hex_digit_test()904 assert!(crate::character::is_hex_digit(b'a')); in hex_digit_test()905 assert!(crate::character::is_hex_digit(b'f')); in hex_digit_test()906 assert!(crate::character::is_hex_digit(b'A')); in hex_digit_test()907 assert!(crate::character::is_hex_digit(b'F')); in hex_digit_test()908 assert!(!crate::character::is_hex_digit(b'g')); in hex_digit_test()909 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
19 fn is_hex_digit(c: char) -> bool { in is_hex_digit() function25 take_while_m_n(2, 2, is_hex_digit), in hex_primary()
170 fn is_hex_digit(self) -> bool; in is_hex_digit() method195 fn is_hex_digit(self) -> bool { in is_hex_digit() method225 fn is_hex_digit(self) -> bool { in is_hex_digit() method256 fn is_hex_digit(self) -> bool { in is_hex_digit() method287 fn is_hex_digit(self) -> bool { in is_hex_digit() method
75 static int is_hex_digit(char x) in is_hex_digit() function128 while (is_hex_digit(p[tok->size])) in next_token()
44 fn is_hex_digit(c: char) -> bool {50 take_while_m_n(2, 2, is_hex_digit),