Home
last modified time | relevance | path

Searched refs:Py_TOUPPER (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Objects/
Dbytes_methods.c321 result[i] = Py_TOUPPER((unsigned char) cptr[i]); in _Py_bytes_upper()
342 c = Py_TOUPPER(c); in _Py_bytes_title()
365 *result = Py_TOUPPER(*s); in _Py_bytes_capitalize()
385 *result = Py_TOUPPER(c); in _Py_bytes_swapcase()
/third_party/python/Include/cpython/
Dpyctype.h33 #define Py_TOUPPER(c) (_Py_ctype_toupper[Py_CHARMASK(c)]) macro
/third_party/python/Modules/
Dunicodedata.c1000 h = (h * scale) + (unsigned char) Py_TOUPPER(s[i]); in _gethash()
1180 if (Py_TOUPPER(name[i]) != buffer[i]) in _cmpname()
/third_party/python/Python/
Dformatter_unicode.c628 c = Py_TOUPPER(c); in fill_number()
658 c = Py_TOUPPER(c); in fill_number()
Dpystrtod.c936 *p1 = Py_TOUPPER(*p1); in PyOS_double_to_string()
/third_party/python/Doc/whatsnew/
D2.7.rst2187 :c:macro:`Py_TOLOWER`, and :c:macro:`Py_TOUPPER`.