Home
last modified time | relevance | path

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

/external/harfbuzz_ng/test/shaping/
Dhb_test_tools.py55 high_surrogate = None
59 if high_surrogate:
60 yield 0x10000 + (high_surrogate - 0xD800) * 0x400 + (cp - 0xDC00)
61 high_surrogate = None
65 if high_surrogate:
67 high_surrogate = None
69 high_surrogate = cp
72 high_surrogate = None
73 if high_surrogate:
/external/flatbuffers/include/flatbuffers/
Dutil.h621 auto high_surrogate = (base >> 10) + 0xD800; in EscapeString() local
624 text += IntToStringHex(high_surrogate, 4); in EscapeString()