Home
last modified time | relevance | path

Searched refs:Py_UNICODE_ISSPACE (Results 1 – 14 of 14) sorted by relevance

/third_party/python/Objects/stringlib/
Ducs4lib.h14 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
Ducs2lib.h14 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
Ducs1lib.h14 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
Dasciilib.h14 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
Dunicodedefs.h16 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
/third_party/python/Include/cpython/
Dunicodeobject.h24 #define Py_UNICODE_ISSPACE(ch) \ macro
/third_party/python/Misc/NEWS.d/
D3.10.0a5.rst669 Fixed a compiler warning in :c:func:`Py_UNICODE_ISSPACE()` on platforms with
/third_party/python/Doc/data/
Drefcounts.dat2370 Py_UNICODE_ISSPACE:int:::
2371 Py_UNICODE_ISSPACE:Py_UNICODE:ch::
/third_party/python/Objects/
Dunicodeobject.c9573 else if (Py_UNICODE_ISSPACE(ch)) { in _PyUnicode_TransformDecimalAndSpaceToASCII()
9664 if (Py_UNICODE_ISSPACE(ch)) { in PyUnicode_EncodeDecimal()
12388 Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, 0))); in unicode_isspace_impl()
12396 if (!Py_UNICODE_ISSPACE(ch)) in unicode_isspace_impl()
12954 if (!Py_UNICODE_ISSPACE(ch)) in do_strip()
12965 if (!Py_UNICODE_ISSPACE(ch)) in do_strip()
/third_party/python/Modules/
D_sre.c124 #define SRE_UNI_IS_SPACE(ch) Py_UNICODE_ISSPACE(ch)
D_testcapimodule.c1818 x = Py_UNICODE_ISSPACE(25); in test_u_code()
/third_party/python/Modules/_decimal/
D_decimal.c1886 return Py_UNICODE_ISSPACE(ch); in is_space()
1940 if (Py_UNICODE_ISSPACE(ch)) { in numeric_as_ascii()
/third_party/python/Doc/c-api/
Dunicode.rst271 .. c:function:: int Py_UNICODE_ISSPACE(Py_UCS4 ch)
/third_party/python/Misc/
DHISTORY15947 Py_UNICODE_ISSPACE macro in an extension module.