Home
last modified time | relevance | path

Searched refs:Py_ISSPACE (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Python/
Dmystrtoul.c102 while (*str && Py_ISSPACE(*str)) in PyOS_strtoul()
141 while (Py_ISSPACE(*str)) in PyOS_strtoul()
269 while (*str && Py_ISSPACE(*str)) in PyOS_strtol()
/third_party/python/Objects/stringlib/
Dstringdefs.h16 #define STRINGLIB_ISSPACE Py_ISSPACE
/third_party/python/Include/cpython/
Dpyctype.h27 #define Py_ISSPACE(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_SPACE) macro
/third_party/python/Objects/
Dcomplexobject.c721 while (Py_ISSPACE(*s)) in complex_from_string_inner()
727 while (Py_ISSPACE(*s)) in complex_from_string_inner()
810 while (Py_ISSPACE(*s)) in complex_from_string_inner()
818 while (Py_ISSPACE(*s)) in complex_from_string_inner()
Dbytes_methods.c20 if (len == 1 && Py_ISSPACE(*p)) in _Py_bytes_isspace()
29 if (!Py_ISSPACE(*p)) in _Py_bytes_isspace()
Dfloatobject.c154 while (s < last && Py_ISSPACE(*s)) { in float_from_string_inner()
158 while (s < last - 1 && Py_ISSPACE(last[-1])) { in float_from_string_inner()
1339 while (Py_ISSPACE(*s)) in float_fromhex()
1488 while (Py_ISSPACE(*s)) in float_fromhex()
Dbytesobject.c1923 while (i < len && Py_ISSPACE(s[i])) { in do_strip()
1932 } while (j >= i && Py_ISSPACE(s[j])); in do_strip()
2400 if (Py_ISSPACE(*str)) { in _PyBytes_FromHex()
2403 } while (Py_ISSPACE(*str)); in _PyBytes_FromHex()
Dbytearrayobject.c1084 #define STRINGLIB_ISSPACE Py_ISSPACE
Dlongobject.c2129 while (*str != '\0' && Py_ISSPACE(*str)) { in PyLong_FromString()
2438 while (*str && Py_ISSPACE(*str)) { in PyLong_FromString()
/third_party/python/Parser/
Dstring_parser.c728 while (Py_ISSPACE(**str)) { in fstring_find_expr()
/third_party/python/Modules/
D_struct.c1325 if (Py_ISSPACE(c)) in prepare_s()
1390 if (Py_ISSPACE(c)) in prepare_s()
D_sre.c94 ((ch) <= ' ' && Py_ISSPACE(ch))
/third_party/python/Doc/whatsnew/
D2.7.rst2184 :c:macro:`Py_ISSPACE`,