Home
last modified time | relevance | path

Searched refs:is_cntrl (Results 1 – 2 of 2) sorted by relevance

/glibc-2.36/localedata/unicode-gen/
Dunicode_utils.py337 def is_cntrl(code_point): function
456 if (is_alpha(code_point) and is_cntrl(code_point)):
483 if (is_cntrl(code_point) and is_digit(code_point)):
486 if (is_cntrl(code_point) and is_punct(code_point)):
489 if (is_cntrl(code_point) and is_graph(code_point)):
492 if (is_cntrl(code_point) and is_print(code_point)):
495 if (is_cntrl(code_point) and is_xdigit(code_point)):
Dgen_unicode_ctype.py232 output_charclass(i18n_file, 'cntrl', unicode_utils.is_cntrl)