Home
last modified time | relevance | path

Searched refs:Py_UNICODE_JOIN_SURROGATES (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/cpython/
Dunicodeobject.h71 #define Py_UNICODE_JOIN_SURROGATES(high, low) \ macro
/third_party/python/Objects/stringlib/
Dcodecs.h582 ch = Py_UNICODE_JOIN_SURROGATES(ch, ch2); in STRINGLIB()
/third_party/python/Modules/
D_json.c534 c = Py_UNICODE_JOIN_SURROGATES(c, c2); in scanstring_unicode()
D_tkinter.c474 ch = Py_UNICODE_JOIN_SURROGATES(high, low); in unicodeFromTclStringAndSize()
/third_party/python/Objects/
Dunicodeobject.c1541 *ucs4_out++ = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]); in unicode_convert_wchar_to_ucs4()
1794 ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]); in find_maxchar_surrogates()
4820 Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh); in PyUnicode_DecodeUTF7Stateful()
5538 ch = Py_UNICODE_JOIN_SURROGATES(ch, text[i]); in _Py_EncodeUTF8Ex()
12663 ch = Py_UNICODE_JOIN_SURROGATES(ch, wstr[i]); in PyUnicode_IsIdentifier()
12678 ch = Py_UNICODE_JOIN_SURROGATES(ch, wstr[i]); in PyUnicode_IsIdentifier()
/third_party/python/Doc/c-api/
Dunicode.rst391 .. c:macro:: Py_UNICODE_JOIN_SURROGATES(high, low)
/third_party/python/Misc/
DHISTORY10549 Py_UNICODE_JOIN_SURROGATES.