Searched refs:high_surrogate (Results 1 – 5 of 5) sorted by relevance
1029 gunichar high_surrogate; in g_utf16_to_utf8() local1035 high_surrogate = 0; in g_utf16_to_utf8()1043 if (high_surrogate) in g_utf16_to_utf8()1045 wc = SURROGATE_VALUE (high_surrogate, c); in g_utf16_to_utf8()1046 high_surrogate = 0; in g_utf16_to_utf8()1057 if (high_surrogate) in g_utf16_to_utf8()1066 high_surrogate = c; in g_utf16_to_utf8()1080 if (high_surrogate && !items_read) in g_utf16_to_utf8()1094 high_surrogate = 0; in g_utf16_to_utf8()1104 wc = SURROGATE_VALUE (high_surrogate, c); in g_utf16_to_utf8()[all …]
55 high_surrogate = None59 if high_surrogate:60 yield 0x10000 + (high_surrogate - 0xD800) * 0x400 + (cp - 0xDC00)61 high_surrogate = None65 if high_surrogate:67 high_surrogate = None69 high_surrogate = cp72 high_surrogate = None73 if high_surrogate:
864 lit_convert_surrogate_pair_to_code_point (ecma_char_t high_surrogate, /**< high surrogate code poin… in lit_convert_surrogate_pair_to_code_point() argument867 JERRY_ASSERT (lit_is_code_point_utf16_high_surrogate (high_surrogate)); in lit_convert_surrogate_pair_to_code_point()871 code_point = (uint16_t) (high_surrogate - LIT_UTF16_HIGH_SURROGATE_MIN); in lit_convert_surrogate_pair_to_code_point()
120 lit_code_point_t lit_convert_surrogate_pair_to_code_point (ecma_char_t high_surrogate, ecma_char_t …
636 auto high_surrogate = (base >> 10) + 0xD800; in EscapeString() local639 text += IntToStringHex(high_surrogate, 4); in EscapeString()