Home
last modified time | relevance | path

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

/third_party/rust/crates/nom/src/character/
Dmod.rs82 pub fn is_alphanumeric(chr: u8) -> bool { in is_alphanumeric() function
/third_party/rust/crates/bindgen/bindgen-tests/
Dbuild.rs33 .replace(|c| !char::is_alphanumeric(c), "_") in main()
/third_party/qrcodegen/python/
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/
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/rust/crates/nom/src/bytes/
Dtests.rs549 use crate::character::is_alphanumeric;
553 take_while(is_alphanumeric)(i)
/third_party/qrcodegen/rust/src/
Dlib.rs1047 } else if QrSegment::is_alphanumeric(text) { in make_segments()
1141 pub fn is_alphanumeric(text: &str) -> bool { in is_alphanumeric() method
/third_party/qrcodegen/rust-no-heap/src/
Dlib.rs180 …} 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
/third_party/rust/crates/nom/doc/
Dchoosing_a_combinator.md121 - [`is_alphanumeric`](https://docs.rs/nom/latest/nom/character/fn.is_alphanumeric.html): Tests if b…
/third_party/rust/crates/bindgen/bindgen/ir/
Dty.rs869 c.is_alphanumeric() || c == '_' in from_clang_ty()
/third_party/rust/crates/bindgen/bindgen/
Dclang.rs1020 first_valid && chars.all(|c| c.is_alphanumeric() || c == '_') in is_valid_identifier()