Home
last modified time | relevance | path

Searched defs:ctype_base (Results 1 – 25 of 40) sorted by relevance

12

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_base.h38 struct ctype_base in _GLIBCXX_VISIBILITY() struct
41 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
45 typedef unsigned long mask; in _GLIBCXX_VISIBILITY()
48 static const mask upper = _CTYPE_U; in _GLIBCXX_VISIBILITY()
49 static const mask lower = _CTYPE_L; in _GLIBCXX_VISIBILITY()
50 static const mask alpha = _CTYPE_A; in _GLIBCXX_VISIBILITY()
51 static const mask digit = _CTYPE_D; in _GLIBCXX_VISIBILITY()
52 static const mask xdigit = _CTYPE_X; in _GLIBCXX_VISIBILITY()
53 static const mask space = _CTYPE_S; in _GLIBCXX_VISIBILITY()
54 static const mask print = _CTYPE_R; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/darwin/
H A Dctype_base.h38 struct ctype_base in _GLIBCXX_VISIBILITY() struct
41 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef unsigned long mask; in _GLIBCXX_VISIBILITY()
46 static const mask upper = _CTYPE_U; in _GLIBCXX_VISIBILITY()
47 static const mask lower = _CTYPE_L; in _GLIBCXX_VISIBILITY()
48 static const mask alpha = _CTYPE_A; in _GLIBCXX_VISIBILITY()
49 static const mask digit = _CTYPE_D; in _GLIBCXX_VISIBILITY()
50 static const mask xdigit = _CTYPE_X; in _GLIBCXX_VISIBILITY()
51 static const mask space = _CTYPE_S; in _GLIBCXX_VISIBILITY()
52 static const mask print = _CTYPE_R; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/darwin/
H A Dctype_base.h38 struct ctype_base in _GLIBCXX_VISIBILITY() struct
41 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef unsigned long mask; in _GLIBCXX_VISIBILITY()
46 static const mask upper = _CTYPE_U; in _GLIBCXX_VISIBILITY()
47 static const mask lower = _CTYPE_L; in _GLIBCXX_VISIBILITY()
48 static const mask alpha = _CTYPE_A; in _GLIBCXX_VISIBILITY()
49 static const mask digit = _CTYPE_D; in _GLIBCXX_VISIBILITY()
50 static const mask xdigit = _CTYPE_X; in _GLIBCXX_VISIBILITY()
51 static const mask space = _CTYPE_S; in _GLIBCXX_VISIBILITY()
52 static const mask print = _CTYPE_R; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_base.h38 struct ctype_base in _GLIBCXX_VISIBILITY() struct
41 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
45 typedef unsigned long mask; in _GLIBCXX_VISIBILITY()
48 static const mask upper = _CTYPE_U; in _GLIBCXX_VISIBILITY()
49 static const mask lower = _CTYPE_L; in _GLIBCXX_VISIBILITY()
50 static const mask alpha = _CTYPE_A; in _GLIBCXX_VISIBILITY()
51 static const mask digit = _CTYPE_D; in _GLIBCXX_VISIBILITY()
52 static const mask xdigit = _CTYPE_X; in _GLIBCXX_VISIBILITY()
53 static const mask space = _CTYPE_S; in _GLIBCXX_VISIBILITY()
54 static const mask print = _CTYPE_R; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/solaris/
H A Dctype_base.h38 struct ctype_base in _GLIBCXX_VISIBILITY() struct
41 typedef int* __to_type; in _GLIBCXX_VISIBILITY()
45 typedef unsigned int mask; in _GLIBCXX_VISIBILITY()
46 static const mask upper = _ISUPPER; in _GLIBCXX_VISIBILITY()
47 static const mask lower = _ISLOWER; in _GLIBCXX_VISIBILITY()
48 static const mask alpha = _ISALPHA; in _GLIBCXX_VISIBILITY()
49 static const mask digit = _ISDIGIT; in _GLIBCXX_VISIBILITY()
50 static const mask xdigit = _ISXDIGIT; in _GLIBCXX_VISIBILITY()
51 static const mask space = _ISSPACE; in _GLIBCXX_VISIBILITY()
52 static const mask print = _ISPRINT; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/tpf/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _ISupper; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _ISlower; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _ISalpha; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _ISdigit; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _ISxdigit; in _GLIBCXX_VISIBILITY()
49 static const mask space = _ISspace; in _GLIBCXX_VISIBILITY()
50 static const mask print = _ISprint; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bionic/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef char mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _U; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _L; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _U | _L; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _N; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _X | _N; in _GLIBCXX_VISIBILITY()
49 static const mask space = _S; in _GLIBCXX_VISIBILITY()
50 static const mask print = _P | _U | _L | _N | _B; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32-w64/
H A Dctype_base.h42 struct ctype_base in _GLIBCXX_VISIBILITY() struct
45 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
49 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
50 static const mask upper = 1 << 0; in _GLIBCXX_VISIBILITY()
51 static const mask lower = 1 << 1; in _GLIBCXX_VISIBILITY()
52 static const mask alpha = 1 << 2; in _GLIBCXX_VISIBILITY()
53 static const mask digit = 1 << 3; in _GLIBCXX_VISIBILITY()
54 static const mask xdigit = 1 << 4; in _GLIBCXX_VISIBILITY()
55 static const mask space = 1 << 5; in _GLIBCXX_VISIBILITY()
56 static const mask print = 1 << 6; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/dragonfly/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef unsigned long mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _CTYPE_U; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _CTYPE_L; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _CTYPE_A; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _CTYPE_D; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _CTYPE_X; in _GLIBCXX_VISIBILITY()
49 static const mask space = _CTYPE_S; in _GLIBCXX_VISIBILITY()
50 static const mask print = _CTYPE_R; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/vxworks/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const unsigned char* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef unsigned char mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _C_UPPER; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _C_LOWER; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _C_UPPER | _C_LOWER; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _C_NUMBER; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _C_HEX_NUMBER; in _GLIBCXX_VISIBILITY()
49 static const mask space = _C_WHITE_SPACE | _C_CONTROL; in _GLIBCXX_VISIBILITY()
50 static const mask print = (_C_UPPER | _C_LOWER | _C_NUMBER in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/solaris/solaris2.10/
H A Dctype_base.h38 struct ctype_base in _GLIBCXX_VISIBILITY() struct
41 typedef int* __to_type; in _GLIBCXX_VISIBILITY()
45 typedef unsigned int mask; in _GLIBCXX_VISIBILITY()
46 static const mask upper = _ISUPPER; in _GLIBCXX_VISIBILITY()
47 static const mask lower = _ISLOWER; in _GLIBCXX_VISIBILITY()
48 static const mask alpha = _ISALPHA; in _GLIBCXX_VISIBILITY()
49 static const mask digit = _ISDIGIT; in _GLIBCXX_VISIBILITY()
50 static const mask xdigit = _ISXDIGIT; in _GLIBCXX_VISIBILITY()
51 static const mask space = _ISSPACE; in _GLIBCXX_VISIBILITY()
52 static const mask print = _ISPRINT; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/netbsd/
H A Dctype_base.h39 struct ctype_base in _GLIBCXX_VISIBILITY() struct
42 typedef const unsigned char* __to_type; in _GLIBCXX_VISIBILITY()
46 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
48 static const mask upper = _CTYPE_U; in _GLIBCXX_VISIBILITY()
49 static const mask lower = _CTYPE_L; in _GLIBCXX_VISIBILITY()
50 static const mask alpha = _CTYPE_A; in _GLIBCXX_VISIBILITY()
51 static const mask digit = _CTYPE_D; in _GLIBCXX_VISIBILITY()
52 static const mask xdigit = _CTYPE_X; in _GLIBCXX_VISIBILITY()
53 static const mask space = _CTYPE_S; in _GLIBCXX_VISIBILITY()
54 static const mask print = _CTYPE_R; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/gnu-linux/
H A Dctype_base.h41 struct ctype_base in _GLIBCXX_VISIBILITY() struct
44 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
48 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
49 static const mask upper = _ISupper; in _GLIBCXX_VISIBILITY()
50 static const mask lower = _ISlower; in _GLIBCXX_VISIBILITY()
51 static const mask alpha = _ISalpha; in _GLIBCXX_VISIBILITY()
52 static const mask digit = _ISdigit; in _GLIBCXX_VISIBILITY()
53 static const mask xdigit = _ISxdigit; in _GLIBCXX_VISIBILITY()
54 static const mask space = _ISspace; in _GLIBCXX_VISIBILITY()
55 static const mask print = _ISprint; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/newlib/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef char mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _U; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _L; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _U | _L; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _N; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _X | _N; in _GLIBCXX_VISIBILITY()
49 static const mask space = _S; in _GLIBCXX_VISIBILITY()
50 static const mask print = _P | _U | _L | _N | _B; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/tpf/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _ISupper; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _ISlower; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _ISalpha; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _ISdigit; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _ISxdigit; in _GLIBCXX_VISIBILITY()
49 static const mask space = _ISspace; in _GLIBCXX_VISIBILITY()
50 static const mask print = _ISprint; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/gnu-linux/
H A Dctype_base.h41 struct ctype_base in _GLIBCXX_VISIBILITY() struct
44 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
48 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
49 static const mask upper = _ISupper; in _GLIBCXX_VISIBILITY()
50 static const mask lower = _ISlower; in _GLIBCXX_VISIBILITY()
51 static const mask alpha = _ISalpha; in _GLIBCXX_VISIBILITY()
52 static const mask digit = _ISdigit; in _GLIBCXX_VISIBILITY()
53 static const mask xdigit = _ISxdigit; in _GLIBCXX_VISIBILITY()
54 static const mask space = _ISspace; in _GLIBCXX_VISIBILITY()
55 static const mask print = _ISprint; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/hpux/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef unsigned int mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _ISUPPER; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _ISLOWER; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _ISALPHA; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _ISDIGIT; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _ISXDIGIT; in _GLIBCXX_VISIBILITY()
49 static const mask space = _ISSPACE; in _GLIBCXX_VISIBILITY()
50 static const mask print = _ISPRINT; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/openbsd/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const short* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef char mask; in _GLIBCXX_VISIBILITY()
45 static const mask upper = _U; in _GLIBCXX_VISIBILITY()
46 static const mask lower = _L; in _GLIBCXX_VISIBILITY()
47 static const mask alpha = _U | _L; in _GLIBCXX_VISIBILITY()
48 static const mask digit = _N; in _GLIBCXX_VISIBILITY()
49 static const mask xdigit = _N | _X; in _GLIBCXX_VISIBILITY()
50 static const mask space = _S; in _GLIBCXX_VISIBILITY()
51 static const mask print = _P | _U | _L | _N | _B; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bionic/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef char mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _U; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _L; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _U | _L; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _N; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _X | _N; in _GLIBCXX_VISIBILITY()
49 static const mask space = _S; in _GLIBCXX_VISIBILITY()
50 static const mask print = _P | _U | _L | _N | _B; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/qnx/qnx6.1/
H A Dctype_base.h41 struct ctype_base in _GLIBCXX_VISIBILITY() struct
44 typedef const unsigned char* __to_type; in _GLIBCXX_VISIBILITY()
48 typedef short mask; in _GLIBCXX_VISIBILITY()
49 static const mask upper = _UP; in _GLIBCXX_VISIBILITY()
50 static const mask lower = _LO; in _GLIBCXX_VISIBILITY()
51 static const mask alpha = _LO | _UP | _XA; in _GLIBCXX_VISIBILITY()
52 static const mask digit = _DI; in _GLIBCXX_VISIBILITY()
53 static const mask xdigit = _XD; in _GLIBCXX_VISIBILITY()
54 static const mask space = _CN | _SP | _XS; in _GLIBCXX_VISIBILITY()
55 static const mask print = _DI | _LO | _PU | _SP | _UP | _XA; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/mingw32-w64/
H A Dctype_base.h42 struct ctype_base in _GLIBCXX_VISIBILITY() struct
45 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
49 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
50 static const mask upper = 1 << 0; in _GLIBCXX_VISIBILITY()
51 static const mask lower = 1 << 1; in _GLIBCXX_VISIBILITY()
52 static const mask alpha = 1 << 2; in _GLIBCXX_VISIBILITY()
53 static const mask digit = 1 << 3; in _GLIBCXX_VISIBILITY()
54 static const mask xdigit = 1 << 4; in _GLIBCXX_VISIBILITY()
55 static const mask space = 1 << 5; in _GLIBCXX_VISIBILITY()
56 static const mask print = 1 << 6; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/newlib/
H A Dctype_base.h36 struct ctype_base in _GLIBCXX_VISIBILITY() struct
39 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
43 typedef char mask; in _GLIBCXX_VISIBILITY()
44 static const mask upper = _U; in _GLIBCXX_VISIBILITY()
45 static const mask lower = _L; in _GLIBCXX_VISIBILITY()
46 static const mask alpha = _U | _L; in _GLIBCXX_VISIBILITY()
47 static const mask digit = _N; in _GLIBCXX_VISIBILITY()
48 static const mask xdigit = _X | _N; in _GLIBCXX_VISIBILITY()
49 static const mask space = _S; in _GLIBCXX_VISIBILITY()
50 static const mask print = _P | _U | _L | _N | _B; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/solaris/
H A Dctype_base.h38 struct ctype_base in _GLIBCXX_VISIBILITY() struct
41 typedef int* __to_type; in _GLIBCXX_VISIBILITY()
45 typedef unsigned int mask; in _GLIBCXX_VISIBILITY()
46 static const mask upper = _ISUPPER; in _GLIBCXX_VISIBILITY()
47 static const mask lower = _ISLOWER; in _GLIBCXX_VISIBILITY()
48 static const mask alpha = _ISALPHA; in _GLIBCXX_VISIBILITY()
49 static const mask digit = _ISDIGIT; in _GLIBCXX_VISIBILITY()
50 static const mask xdigit = _ISXDIGIT; in _GLIBCXX_VISIBILITY()
51 static const mask space = _ISSPACE; in _GLIBCXX_VISIBILITY()
52 static const mask print = _ISPRINT; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/bsd/netbsd/
H A Dctype_base.h39 struct ctype_base in _GLIBCXX_VISIBILITY() struct
42 typedef const unsigned char* __to_type; in _GLIBCXX_VISIBILITY()
46 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
48 static const mask upper = _CTYPE_U; in _GLIBCXX_VISIBILITY()
49 static const mask lower = _CTYPE_L; in _GLIBCXX_VISIBILITY()
50 static const mask alpha = _CTYPE_A; in _GLIBCXX_VISIBILITY()
51 static const mask digit = _CTYPE_D; in _GLIBCXX_VISIBILITY()
52 static const mask xdigit = _CTYPE_X; in _GLIBCXX_VISIBILITY()
53 static const mask space = _CTYPE_S; in _GLIBCXX_VISIBILITY()
54 static const mask print = _CTYPE_R; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32/
H A Dctype_base.h42 struct ctype_base in _GLIBCXX_VISIBILITY() struct
45 typedef const int* __to_type; in _GLIBCXX_VISIBILITY()
49 typedef unsigned short mask; in _GLIBCXX_VISIBILITY()
50 static const mask upper = 1 << 0; in _GLIBCXX_VISIBILITY()
51 static const mask lower = 1 << 1; in _GLIBCXX_VISIBILITY()
52 static const mask alpha = 1 << 2; in _GLIBCXX_VISIBILITY()
53 static const mask digit = 1 << 3; in _GLIBCXX_VISIBILITY()
54 static const mask xdigit = 1 << 4; in _GLIBCXX_VISIBILITY()
55 static const mask space = 1 << 5; in _GLIBCXX_VISIBILITY()
56 static const mask print = 1 << 6; in _GLIBCXX_VISIBILITY()
[all …]

12