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.h585 ch = Py_UNICODE_JOIN_SURROGATES(ch, ch2); in STRINGLIB()
/third_party/python/Modules/
D_json.c531 c = Py_UNICODE_JOIN_SURROGATES(c, c2); in scanstring_unicode()
D_tkinter.c469 ch = Py_UNICODE_JOIN_SURROGATES(high, low); in unicodeFromTclStringAndSize()
/third_party/python/Objects/
Dunicodeobject.c1525 *ucs4_out++ = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]); in unicode_convert_wchar_to_ucs4()
1778 ch = Py_UNICODE_JOIN_SURROGATES(iter[0], iter[1]); in find_maxchar_surrogates()
4613 Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh); in PyUnicode_DecodeUTF7Stateful()
5340 ch = Py_UNICODE_JOIN_SURROGATES(ch, text[i]); in _Py_EncodeUTF8Ex()
12391 ch = Py_UNICODE_JOIN_SURROGATES(ch, wstr[i]); in PyUnicode_IsIdentifier()
12406 ch = Py_UNICODE_JOIN_SURROGATES(ch, wstr[i]); in PyUnicode_IsIdentifier()
/third_party/python/Doc/c-api/
Dunicode.rst392 .. c:macro:: Py_UNICODE_JOIN_SURROGATES(high, low)
/third_party/python/Misc/
DHISTORY10549 Py_UNICODE_JOIN_SURROGATES.