Searched refs:hex_chars (Results 1 – 3 of 3) sorted by relevance
839 static const char hex_chars[] = "0123456789ABCDEF"; in convert_query() local878 *c++ = hex_chars [lo]; in convert_query()879 *c++ = hex_chars [hi]; in convert_query()889 *c++ = hex_chars [lo]; in convert_query()891 *c++ = hex_chars [hi]; in convert_query()
3080 static const char hex_chars[] = "0123456789ABCDEF"; in WriteUChar() local3082 w->AddCharacter(hex_chars[(u >> 12) & 0xF]); in WriteUChar()3083 w->AddCharacter(hex_chars[(u >> 8) & 0xF]); in WriteUChar()3084 w->AddCharacter(hex_chars[(u >> 4) & 0xF]); in WriteUChar()3085 w->AddCharacter(hex_chars[u & 0xF]); in WriteUChar()
1089 hex_chars = {'{:04X}'.format(ord(c)) for c in illegal_chars}1092 if (hex_chars & set(unicodedata.decomposition(c).split()))