Home
last modified time | relevance | path

Searched refs:Py_UNICODE_IS_SURROGATE (Results 1 - 6 of 6) sorted by relevance

/third_party/python/Objects/stringlib/
H A Dcodecs.h313 else if (Py_UNICODE_IS_SURROGATE(ch)) { in utf8_encoder()
323 while ((endpos < size) && Py_UNICODE_IS_SURROGATE(data[endpos])) in utf8_encoder()
574 if (!Py_UNICODE_IS_SURROGATE(ch)) {
789 if (Py_UNICODE_IS_SURROGATE(ch)) {
816 if (Py_UNICODE_IS_SURROGATE(ch)) {
/third_party/python/Python/
H A Dcodecs.c1172 if (!Py_UNICODE_IS_SURROGATE(ch)) { in PyCodec_SurrogatePassErrors()
1269 if (!Py_UNICODE_IS_SURROGATE(ch)) { in PyCodec_SurrogatePassErrors()
H A Dfileutils.c114 if (Py_UNICODE_IS_SURROGATE(ch)) { in is_valid_wide_char()
535 assert(!Py_UNICODE_IS_SURROGATE(*out)); in decode_current_locale()
/third_party/python/Include/cpython/
H A Dunicodeobject.h54 #define Py_UNICODE_IS_SURROGATE(ch) (0xD800 <= (ch) && (ch) <= 0xDFFF) macro
/third_party/python/Objects/
H A Dunicodeobject.c5467 else if (Py_UNICODE_IS_SURROGATE(ch) && !surrogatepass) { in _Py_EncodeUTF8Ex()
5731 Py_UNICODE_IS_SURROGATE(ch)) in PyUnicode_DecodeUTF32Stateful()
5743 Py_UNICODE_IS_SURROGATE(ch)) in PyUnicode_DecodeUTF32Stateful()
5752 if (Py_UNICODE_IS_SURROGATE(ch)) { in PyUnicode_DecodeUTF32Stateful()
/third_party/python/Modules/
H A D_datetimemodule.c5304 if(Py_UNICODE_IS_SURROGATE(PyUnicode_READ(kind, unicode_data, pos))) { in _sanitize_isoformat_str()

Completed in 37 milliseconds