Searched refs:Py_UNICODE_ISSPACE (Results 1 – 23 of 23) sorted by relevance
15 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
17 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
14 #define STRINGLIB_ISSPACE Py_UNICODE_ISSPACE
334 #define Py_UNICODE_ISSPACE(ch) iswspace(ch) macro363 #define Py_UNICODE_ISSPACE(ch) \ macro
5250 if (Py_UNICODE_ISSPACE(ch)) { in PyUnicode_EncodeDecimal()5270 Py_UNICODE_ISSPACE(*collend) || in PyUnicode_EncodeDecimal()5317 if (Py_UNICODE_ISSPACE(ch)) in PyUnicode_EncodeDecimal()6839 Py_UNICODE_ISSPACE(*p)) in unicode_isspace()6848 if (!Py_UNICODE_ISSPACE(*p)) in unicode_isspace()7104 while (i < len && Py_UNICODE_ISSPACE(s[i])) { in do_strip()7113 } while (j >= i && Py_UNICODE_ISSPACE(s[j])); in do_strip()
1425 Py_UNICODE_ISSPACE:int:::1426 Py_UNICODE_ISSPACE:Py_UNICODE:ch::
125 #define Py_UNICODE_ISSPACE(ch) \ macro
2349 Py_UNICODE_ISSPACE:int:::2350 Py_UNICODE_ISSPACE:Py_UNICODE:ch::
9105 else if (Py_UNICODE_ISSPACE(ch)) { in _PyUnicode_TransformDecimalAndSpaceToASCII()9196 if (Py_UNICODE_ISSPACE(ch)) { in PyUnicode_EncodeDecimal()11895 Py_UNICODE_ISSPACE(PyUnicode_READ(kind, data, 0))); in unicode_isspace_impl()11903 if (!Py_UNICODE_ISSPACE(ch)) in unicode_isspace_impl()12408 if (!Py_UNICODE_ISSPACE(ch)) in do_strip()12419 if (!Py_UNICODE_ISSPACE(ch)) in do_strip()
2913 if (!Py_UNICODE_ISSPACE(ch)) in _check_for_legacy_statements()
129 #define SRE_UNI_IS_SPACE(ch) Py_UNICODE_ISSPACE(ch)
1648 x = Py_UNICODE_ISSPACE(25); in test_u_code()
1661 x = Py_UNICODE_ISSPACE(25); in test_u_code()
176 #define SRE_UNI_IS_SPACE(ch) Py_UNICODE_ISSPACE((Py_UNICODE)(ch))
1742 return Py_UNICODE_ISSPACE(ch); in is_space()1796 if (Py_UNICODE_ISSPACE(ch)) { in numeric_as_ascii()
117 .. c:function:: int Py_UNICODE_ISSPACE(Py_UNICODE ch)
2009 !Py_UNICODE_ISSPACE(s[len-1]) || in PyEval_EvalFrameEx()
256 .. c:function:: int Py_UNICODE_ISSPACE(Py_UNICODE ch)
5276 On Windows, fix a compilation error when using the Py_UNICODE_ISSPACE macro
15947 Py_UNICODE_ISSPACE macro in an extension module.