Home
last modified time | relevance | path

Searched refs:is_alphanumeric (Results 1 - 8 of 8) sorted by relevance

/third_party/rust/crates/nom/src/character/
H A Dmod.rs75 /// # use nom::character::is_alphanumeric;
76 /// assert_eq!(is_alphanumeric(b'-'), false);
77 /// assert_eq!(is_alphanumeric(b'a'), true);
78 /// assert_eq!(is_alphanumeric(b'9'), true);
79 /// assert_eq!(is_alphanumeric(b'A'), true);
82 pub fn is_alphanumeric(chr: u8) -> bool { in is_alphanumeric() functions
/third_party/rust/crates/bindgen/bindgen-tests/
H A Dbuild.rs33 .replace(|c| !char::is_alphanumeric(c), "_") in main()
/third_party/qrcodegen/python/
H A Dqrcodegen.py707 if not QrSegment.is_alphanumeric(text):
729 elif QrSegment.is_alphanumeric(text):
766 def is_alphanumeric(text: str) -> bool: member in QrSegment
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross_parsed_ir.cpp153 static bool is_alphanumeric(char c) in is_alphanumeric() function
167 if (!is_alphanumeric(c) && c != '_') in is_valid_identifier()
289 if (!is_alphanumeric(c) && c != '_') in ensure_valid_identifier()
/third_party/qrcodegen/rust/src/
H A Dlib.rs1047 } else if QrSegment::is_alphanumeric(text) { in make_segments()
1141 pub fn is_alphanumeric(text: &str) -> bool { in is_alphanumeric() functions
/third_party/rust/crates/nom/src/bytes/
H A Dtests.rs549 use crate::character::is_alphanumeric; in recognize_take_while()
553 take_while(is_alphanumeric)(i) in recognize_take_while()
/third_party/qrcodegen/rust-no-heap/src/
H A Dlib.rs180 } else if QrSegment::is_alphanumeric(text) && QrSegment::calc_buffer_size(Alphanumeric, textlen).map_or(false, |x| x <= buflen) {
1280 pub fn is_alphanumeric(text: &str) -> bool { in is_alphanumeric() functions
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dty.rs869 c.is_alphanumeric() || c == '_' in from_clang_ty()

Completed in 10 milliseconds