Home
last modified time | relevance | path

Searched refs:Py_ISDIGIT (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Python/
Dpystrtod.c217 if (!Py_ISDIGIT(*p) && *p != '.') in _PyOS_ascii_strtod()
228 while (Py_ISDIGIT(*p)) in _PyOS_ascii_strtod()
236 while (Py_ISDIGIT(*p)) in _PyOS_ascii_strtod()
243 while (Py_ISDIGIT(*p)) in _PyOS_ascii_strtod()
459 while (Py_ISDIGIT(*buffer)) in change_decimal_from_locale_to_dot()
502 while (*p && Py_ISDIGIT(*p)) { in ensure_minimum_exponent_length()
563 while (Py_ISDIGIT(*p)) in remove_trailing_zeros()
571 while (Py_ISDIGIT(*p)) in remove_trailing_zeros()
614 while (*p && Py_ISDIGIT(*p)) in ensure_decimal_point()
619 if (Py_ISDIGIT(*(p+1))) { in ensure_decimal_point()
[all …]
Dformatter_unicode.c450 while (pos<end && Py_ISDIGIT(PyUnicode_READ(kind, data, pos))) in parse_number()
/third_party/python/Include/cpython/
Dpyctype.h24 #define Py_ISDIGIT(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_DIGIT) macro
/third_party/python/Objects/
Dbytes_methods.c161 if (len == 1 && Py_ISDIGIT(*p)) in _Py_bytes_isdigit()
170 if (!Py_ISDIGIT(*p)) in _Py_bytes_isdigit()
Dbytesobject.c260 while (Py_ISDIGIT(*f)) in PyBytes_FromFormatV()
267 for (; Py_ISDIGIT(*f); f++) { in PyBytes_FromFormatV()
Dunicodeobject.c2864 if (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()
2867 while (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()
2880 if (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()
2883 while (Py_ISDIGIT((unsigned)*f)) { in unicode_fromformat_arg()
/third_party/python/Modules/
D_sre.c92 ((ch) <= '9' && Py_ISDIGIT(ch))
/third_party/python/Doc/whatsnew/
D2.7.rst2182 :c:macro:`Py_ISDIGIT`,
/third_party/python/Misc/
DHISTORY14876 new Py_ISDIGIT / Py_ISALPHA / Py_TOLOWER, etc. in pctypes.h.