Searched refs:PY_CTF_UPPER (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Python/ |
D | pyctype.c | 71 PY_CTF_UPPER|PY_CTF_XDIGIT, /* 0x41 'A' */ 72 PY_CTF_UPPER|PY_CTF_XDIGIT, /* 0x42 'B' */ 73 PY_CTF_UPPER|PY_CTF_XDIGIT, /* 0x43 'C' */ 74 PY_CTF_UPPER|PY_CTF_XDIGIT, /* 0x44 'D' */ 75 PY_CTF_UPPER|PY_CTF_XDIGIT, /* 0x45 'E' */ 76 PY_CTF_UPPER|PY_CTF_XDIGIT, /* 0x46 'F' */ 77 PY_CTF_UPPER, /* 0x47 'G' */ 78 PY_CTF_UPPER, /* 0x48 'H' */ 79 PY_CTF_UPPER, /* 0x49 'I' */ 80 PY_CTF_UPPER, /* 0x4a 'J' */ [all …]
|
/third_party/python/Include/cpython/ |
D | pyctype.h | 9 #define PY_CTF_UPPER 0x02 macro 10 #define PY_CTF_ALPHA (PY_CTF_LOWER|PY_CTF_UPPER) 22 #define Py_ISUPPER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_UPPER)
|