Home
last modified time | relevance | path

Searched refs:Py_TOLOWER (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Python/
Dcodecs.c1063 if (Py_TOLOWER(encoding[0]) == 'u' && in get_standard_encoding()
1064 Py_TOLOWER(encoding[1]) == 't' && in get_standard_encoding()
1065 Py_TOLOWER(encoding[2]) == 'f') { in get_standard_encoding()
1085 if (Py_TOLOWER(encoding[1]) == 'e' && encoding[2] == '\0') { in get_standard_encoding()
1086 if (Py_TOLOWER(encoding[0]) == 'b') in get_standard_encoding()
1088 if (Py_TOLOWER(encoding[0]) == 'l') in get_standard_encoding()
1104 if (Py_TOLOWER(encoding[1]) == 'e' && encoding[2] == '\0') { in get_standard_encoding()
1105 if (Py_TOLOWER(encoding[0]) == 'b') in get_standard_encoding()
1107 if (Py_TOLOWER(encoding[0]) == 'l') in get_standard_encoding()
Dpystrtod.c13 while(*t && Py_TOLOWER(*s) == *t) { in case_insensitive_match()
/third_party/python/Modules/_sqlite/
Drow.c117 if (Py_TOLOWER(*p1) != Py_TOLOWER(*p2)) { in equal_ignore_case()
/third_party/python/Include/cpython/
Dpyctype.h32 #define Py_TOLOWER(c) (_Py_ctype_tolower[Py_CHARMASK(c)]) macro
/third_party/python/Objects/
Dbytes_methods.c305 result[i] = Py_TOLOWER((unsigned char) cptr[i]); in _Py_bytes_lower()
346 c = Py_TOLOWER(c); in _Py_bytes_title()
388 *result = Py_TOLOWER(c); in _Py_bytes_swapcase()
Dunicodeobject.c3587 *l++ = Py_TOLOWER(c); in _Py_normalize_encoding()
/third_party/python/Modules/
D_sre.c102 return ((ch) < 128 ? Py_TOLOWER(ch) : ch); in sre_lower_ascii()
D_tkinter.c771 argv0[0] = Py_TOLOWER(argv0[0]); in Tkapp_New()
/third_party/python/Doc/whatsnew/
D2.7.rst2187 :c:macro:`Py_TOLOWER`, and :c:macro:`Py_TOUPPER`.
/third_party/python/Misc/
DHISTORY14876 new Py_ISDIGIT / Py_ISALPHA / Py_TOLOWER, etc. in pctypes.h.