Searched refs:PY_CTF_LOWER (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/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 …]
|
/external/python/cpython2/Include/ |
D | pyctype.h | 4 #define PY_CTF_LOWER 0x01 macro 6 #define PY_CTF_ALPHA (PY_CTF_LOWER|PY_CTF_UPPER) 17 #define Py_ISLOWER(c) (_Py_ctype_table[Py_CHARMASK(c)] & PY_CTF_LOWER)
|