Searched refs:is_alphanumeric (Results 1 – 10 of 10) sorted by relevance
82 pub fn is_alphanumeric(chr: u8) -> bool { in is_alphanumeric() function
33 .replace(|c| !char::is_alphanumeric(c), "_") in main()
707 if not QrSegment.is_alphanumeric(text):729 elif QrSegment.is_alphanumeric(text):766 def is_alphanumeric(text: str) -> bool: member in QrSegment
153 static bool is_alphanumeric(char c) in is_alphanumeric() function167 if (!is_alphanumeric(c) && c != '_') in is_valid_identifier()289 if (!is_alphanumeric(c) && c != '_') in ensure_valid_identifier()
549 use crate::character::is_alphanumeric;553 take_while(is_alphanumeric)(i)
1047 } else if QrSegment::is_alphanumeric(text) { in make_segments()1141 pub fn is_alphanumeric(text: &str) -> bool { in is_alphanumeric() method
180 …} else if QrSegment::is_alphanumeric(text) && QrSegment::calc_buffer_size(Alphanumeric, textlen).m… in encode_text()1280 pub fn is_alphanumeric(text: &str) -> bool { in is_alphanumeric() method
121 - [`is_alphanumeric`](https://docs.rs/nom/latest/nom/character/fn.is_alphanumeric.html): Tests if b…
869 c.is_alphanumeric() || c == '_' in from_clang_ty()
1020 first_valid && chars.all(|c| c.is_alphanumeric() || c == '_') in is_valid_identifier()