Home
last modified time | relevance | path

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

/third_party/boost/boost/spirit/home/support/char_encoding/unicode/
Dquery.hpp227 inline bool is_alphanumeric(::boost::uint32_t ch) in is_alphanumeric() function
/third_party/qrcodegen/python/
Dqrcodegen.py708 if not QrSegment.is_alphanumeric(text):
732 elif QrSegment.is_alphanumeric(text):
769 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/boost/boost/spirit/home/support/char_encoding/
Dunicode.hpp47 return ucd::is_alphanumeric(ch); in isalnum()
/third_party/qrcodegen/rust/src/
Dlib.rs1040 } else if QrSegment::is_alphanumeric(text) { in make_segments()
1133 pub fn is_alphanumeric(text: &[char]) -> bool { in is_alphanumeric() method