OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Py_CHARMASK
(Results
1 - 4
of
4
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyctype.h
17
#define Py_ISLOWER(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_LOWER)
18
#define Py_ISUPPER(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_UPPER)
19
#define Py_ISALPHA(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_ALPHA)
20
#define Py_ISDIGIT(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_DIGIT)
21
#define Py_ISXDIGIT(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_XDIGIT)
22
#define Py_ISALNUM(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_ALNUM)
23
#define Py_ISSPACE(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_SPACE)
28
#define Py_TOLOWER(c) (_Py_ctype_tolower[
Py_CHARMASK
(c)])
29
#define Py_TOUPPER(c) (_Py_ctype_toupper[
Py_CHARMASK
(c)])
Python.h
154
#define
Py_CHARMASK
(c) ((unsigned char)((c) & 0xff))
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyctype.h
17
#define Py_ISLOWER(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_LOWER)
18
#define Py_ISUPPER(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_UPPER)
19
#define Py_ISALPHA(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_ALPHA)
20
#define Py_ISDIGIT(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_DIGIT)
21
#define Py_ISXDIGIT(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_XDIGIT)
22
#define Py_ISALNUM(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_ALNUM)
23
#define Py_ISSPACE(c) (_Py_ctype_table[
Py_CHARMASK
(c)] & PY_CTF_SPACE)
28
#define Py_TOLOWER(c) (_Py_ctype_tolower[
Py_CHARMASK
(c)])
29
#define Py_TOUPPER(c) (_Py_ctype_toupper[
Py_CHARMASK
(c)])
Python.h
154
#define
Py_CHARMASK
(c) ((unsigned char)((c) & 0xff))
Completed in 294 milliseconds