Home
last modified time | relevance | path

Searched refs:hex_chars (Results 1 - 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/profiler/
H A Dheap-snapshot-generator.cc2978 static const char hex_chars[] = "0123456789ABCDEF"; in WriteUChar() local
2980 w->AddCharacter(hex_chars[(u >> 12) & 0xF]); in WriteUChar()
2981 w->AddCharacter(hex_chars[(u >> 8) & 0xF]); in WriteUChar()
2982 w->AddCharacter(hex_chars[(u >> 4) & 0xF]); in WriteUChar()
2983 w->AddCharacter(hex_chars[u & 0xF]); in WriteUChar()
/third_party/python/Lib/test/
H A Dtest_urlparse.py1185 hex_chars = {'{:04X}'.format(ord(c)) for c in illegal_chars}
1189 and (hex_chars & set(unicodedata.decomposition(c).split()))

Completed in 9 milliseconds