Searched refs:PY_CTF_LOWER (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Python/ |
D | pyctype.c | 103 PY_CTF_LOWER|PY_CTF_XDIGIT, /* 0x61 'a' */ 104 PY_CTF_LOWER|PY_CTF_XDIGIT, /* 0x62 'b' */ 105 PY_CTF_LOWER|PY_CTF_XDIGIT, /* 0x63 'c' */ 106 PY_CTF_LOWER|PY_CTF_XDIGIT, /* 0x64 'd' */ 107 PY_CTF_LOWER|PY_CTF_XDIGIT, /* 0x65 'e' */ 108 PY_CTF_LOWER|PY_CTF_XDIGIT, /* 0x66 'f' */ 109 PY_CTF_LOWER, /* 0x67 'g' */ 110 PY_CTF_LOWER, /* 0x68 'h' */ 111 PY_CTF_LOWER, /* 0x69 'i' */ 112 PY_CTF_LOWER, /* 0x6a 'j' */ [all …]
|
/third_party/python/Include/cpython/ |
D | pyctype.h | 8 #define PY_CTF_LOWER 0x01 macro 10 #define PY_CTF_ALPHA (PY_CTF_LOWER|PY_CTF_UPPER) 21 #define Py_ISLOWER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_LOWER)
|