Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/gcc/libstdc++-v3/config/os/bsd/darwin/
H A Dctype_base.h41 struct ctype_base struct
44 typedef const int* __to_type;
46 typedef unsigned long mask;
49 static const mask upper = _CTYPE_U;
50 static const mask lower = _CTYPE_L;
51 static const mask alpha = _CTYPE_A;
52 static const mask digit = _CTYPE_D;
53 static const mask xdigit = _CTYPE_X;
54 static const mask space = _CTYPE_S;
55 static const mask print = _CTYPE_R;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/bsd/freebsd/
H A Dctype_base.h38 struct ctype_base struct
41 typedef const int* __to_type;
45 typedef unsigned long mask;
48 static const mask upper = _CTYPE_U;
49 static const mask lower = _CTYPE_L;
50 static const mask alpha = _CTYPE_A;
51 static const mask digit = _CTYPE_D;
52 static const mask xdigit = _CTYPE_X;
53 static const mask space = _CTYPE_S;
54 static const mask print = _CTYPE_R;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/bsd/freebsd/
H A Dctype_base.h41 struct ctype_base struct
44 typedef const int* __to_type;
48 typedef unsigned long mask;
51 static const mask upper = _CTYPE_U;
52 static const mask lower = _CTYPE_L;
53 static const mask alpha = _CTYPE_A;
54 static const mask digit = _CTYPE_D;
55 static const mask xdigit = _CTYPE_X;
56 static const mask space = _CTYPE_S;
57 static const mask print = _CTYPE_R;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/solaris/solaris2.6/
H A Dctype_base.h40 struct ctype_base struct
43 typedef long* __to_type;
47 typedef unsigned int mask;
48 static const mask upper = _ISUPPER;
49 static const mask lower = _ISLOWER;
50 static const mask alpha = _ISALPHA;
51 static const mask digit = _ISDIGIT;
52 static const mask xdigit = _ISXDIGIT;
53 static const mask space = _ISSPACE;
54 static const mask print = _ISPRINT;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/qnx/qnx6.1/
H A Dctype_base.h39 struct ctype_base struct
42 typedef const unsigned char* __to_type;
46 typedef short mask;
47 static const mask upper = _UP;
48 static const mask lower = _LO;
49 static const mask alpha = _LO | _UP | _XA;
50 static const mask digit = _DI;
51 static const mask xdigit = _XD;
52 static const mask space = _CN | _SP | _XS;
53 static const mask print = _DI | _LO | _PU | _SP | _UP | _XA;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/djgpp/
H A Dctype_base.h37 struct ctype_base struct
39 typedef unsigned short mask;
42 typedef unsigned char * __to_type;
46 static const mask space = __dj_ISSPACE; // Whitespace
47 static const mask print = __dj_ISPRINT; // Printing
48 static const mask cntrl = __dj_ISCNTRL; // Control character
49 static const mask upper = __dj_ISUPPER; // UPPERCASE
50 static const mask lower = __dj_ISLOWER; // lowercase
51 static const mask alpha = __dj_ISALPHA; // Alphabetic
52 static const mask digit = __dj_ISDIGIT; // Numeric
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/irix/irix5.2/
H A Dctype_base.h36 struct ctype_base struct
39 typedef unsigned int* __to_type;
43 typedef unsigned char mask;
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X;
49 static const mask space = _S;
50 static const mask print = _U | _L | _N | _P | _B;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/newlib/
H A Dctype_base.h38 struct ctype_base struct
41 typedef const int* __to_type;
45 typedef char mask;
46 static const mask upper = _U;
47 static const mask lower = _L;
48 static const mask alpha = _U | _L;
49 static const mask digit = _N;
50 static const mask xdigit = _X | _N;
51 static const mask space = _S;
52 static const mask print = _P | _U | _L | _N | _B;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/bsd/openbsd/
H A Dctype_base.h36 struct ctype_base struct
39 typedef const short* __to_type;
43 typedef char mask;
44 static const mask upper = _CTYPE_U;
45 static const mask lower = _CTYPE_L;
46 static const mask alpha = _CTYPE_U | _CTYPE_L;
47 static const mask digit = _CTYPE_N;
48 static const mask xdigit = _CTYPE_N | _CTYPE_X;
49 static const mask space = _CTYPE_S;
50 static const mask print = _CTYPE_P | _CTYPE_U | _CTYPE_L | _CTYPE_N | _CTYPE_B;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/irix/irix6.5/
H A Dctype_base.h39 struct ctype_base struct
42 typedef int* __to_type;
46 typedef unsigned int mask;
47 static const mask upper = _ISupper;
48 static const mask lower = _ISlower;
49 static const mask alpha = _ISalpha;
50 static const mask digit = _ISdigit;
51 static const mask xdigit = _ISxdigit;
52 static const mask space = _ISspace;
53 static const mask print = _ISprint;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/hpux/
H A Dctype_base.h39 struct ctype_base struct
42 typedef const int* __to_type;
46 typedef unsigned int mask;
47 static const mask upper = _ISUPPER;
48 static const mask lower = _ISLOWER;
49 static const mask alpha = _ISALPHA;
50 static const mask digit = _ISDIGIT;
51 static const mask xdigit = _ISXDIGIT;
52 static const mask space = _ISSPACE;
53 static const mask print = _ISPRINT;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/gnu-linux/
H A Dctype_base.h45 struct ctype_base struct
48 typedef const int* __to_type;
52 typedef unsigned short mask;
53 static const mask upper = _ISupper;
54 static const mask lower = _ISlower;
55 static const mask alpha = _ISalpha;
56 static const mask digit = _ISdigit;
57 static const mask xdigit = _ISxdigit;
58 static const mask space = _ISspace;
59 static const mask print = _ISprint;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/mingw32/
H A Dctype_base.h39 struct ctype_base struct
42 typedef const int* __to_type;
46 typedef unsigned short mask;
47 static const mask upper = _UPPER;
48 static const mask lower = _LOWER;
49 static const mask alpha = _ALPHA;
50 static const mask digit = _DIGIT;
51 static const mask xdigit = _HEX;
52 static const mask space = _SPACE;
53 static const mask print = (_BLANK | _PUNCT| _ALPHA | _DIGIT);
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/djgpp/
H A Dctype_base.h34 struct ctype_base struct
36 typedef unsigned short mask;
39 typedef unsigned char * __to_type;
43 static const mask space = __dj_ISSPACE; // Whitespace
44 static const mask print = __dj_ISPRINT; // Printing
45 static const mask cntrl = __dj_ISCNTRL; // Control character
46 static const mask upper = __dj_ISUPPER; // UPPERCASE
47 static const mask lower = __dj_ISLOWER; // lowercase
48 static const mask alpha = __dj_ISALPHA; // Alphabetic
49 static const mask digit = __dj_ISDIGIT; // Numeric
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/windiss/
H A Dctype_base.h39 struct ctype_base struct
42 typedef const int* __to_type;
46 typedef unsigned int mask;
47 static const mask upper = _U;
48 static const mask lower = _L;
49 static const mask alpha = _U | _L;
50 static const mask digit = _N;
51 static const mask xdigit = _X;
52 static const mask space = _S;
53 static const mask print = _U | _L | _N | _P | _B;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/bsd/netbsd/
H A Dctype_base.h39 struct ctype_base struct
42 typedef const unsigned char* __to_type;
46 typedef unsigned char mask;
47 static const mask upper = _U;
48 static const mask lower = _L;
49 static const mask alpha = _U | _L;
50 static const mask digit = _N;
51 static const mask xdigit = _N | _X;
52 static const mask space = _S;
53 static const mask print = _P | _U | _L | _N | _B;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/newlib/
H A Dctype_base.h41 struct ctype_base struct
44 typedef const int* __to_type;
48 typedef char mask;
49 static const mask upper = _U;
50 static const mask lower = _L;
51 static const mask alpha = _U | _L;
52 static const mask digit = _N;
53 static const mask xdigit = _X | _N;
54 static const mask space = _S;
55 static const mask print = _P | _U | _L | _N | _B;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/qnx/qnx6.1/
H A Dctype_base.h36 struct ctype_base struct
39 typedef const unsigned char* __to_type;
43 typedef short mask;
44 static const mask upper = _UP;
45 static const mask lower = _LO;
46 static const mask alpha = _LO | _UP | _XA;
47 static const mask digit = _DI;
48 static const mask xdigit = _XD;
49 static const mask space = _CN | _SP | _XS;
50 static const mask print = _DI | _LO | _PU | _SP | _UP | _XA;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.5/
H A Dctype_base.h36 struct ctype_base struct
39 typedef const int* __to_type;
43 typedef unsigned char mask;
44 static const mask upper = 01;
45 static const mask lower = 02;
46 static const mask alpha = 01 | 02;
47 static const mask digit = 04;
48 static const mask xdigit = 0200;
49 static const mask space = 010;
50 static const mask print = 020 | 01 | 02 | 04 | 0100;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/irix/irix5.2/
H A Dctype_base.h39 struct ctype_base struct
42 typedef unsigned int* __to_type;
46 typedef unsigned char mask;
47 static const mask upper = _U;
48 static const mask lower = _L;
49 static const mask alpha = _U | _L;
50 static const mask digit = _N;
51 static const mask xdigit = _X;
52 static const mask space = _S;
53 static const mask print = _U | _L | _N | _P | _B;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/aix/
H A Dctype_base.h36 struct ctype_base struct
39 typedef const int* __to_type;
43 typedef unsigned int mask;
44 static const mask upper = _ISUPPER;
45 static const mask lower = _ISLOWER;
46 static const mask alpha = _ISALPHA;
47 static const mask digit = _ISDIGIT;
48 static const mask xdigit = _ISXDIGIT;
49 static const mask space = _ISSPACE;
50 static const mask print = _ISPRINT;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/solaris/solaris2.7/
H A Dctype_base.h38 struct ctype_base struct
41 typedef int* __to_type;
45 typedef unsigned int mask;
46 static const mask upper = _ISUPPER;
47 static const mask lower = _ISLOWER;
48 static const mask alpha = _ISALPHA;
49 static const mask digit = _ISDIGIT;
50 static const mask xdigit = _ISXDIGIT;
51 static const mask space = _ISSPACE;
52 static const mask print = _ISPRINT;
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/config/os/generic/
H A Dctype_base.h39 struct ctype_base struct
42 typedef const int* __to_type;
46 typedef unsigned int mask;
47 static const mask upper = 1 << 0;
48 static const mask lower = 1 << 1;
49 static const mask alpha = 1 << 2;
50 static const mask digit = 1 << 3;
51 static const mask xdigit = 1 << 4;
52 static const mask space = 1 << 5;
53 static const mask print = 1 << 6;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/gnu-linux/
H A Dctype_base.h36 struct ctype_base struct
39 typedef const int* __to_type;
43 typedef unsigned short mask;
44 static const mask upper = _ISupper;
45 static const mask lower = _ISlower;
46 static const mask alpha = _ISalpha;
47 static const mask digit = _ISdigit;
48 static const mask xdigit = _ISxdigit;
49 static const mask space = _ISspace;
50 static const mask print = _ISprint;
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/config/os/windiss/
H A Dctype_base.h36 struct ctype_base struct
39 typedef const int* __to_type;
43 typedef unsigned int mask;
44 static const mask upper = _U;
45 static const mask lower = _L;
46 static const mask alpha = _U | _L;
47 static const mask digit = _N;
48 static const mask xdigit = _X;
49 static const mask space = _S;
50 static const mask print = _U | _L | _N | _P | _B;
[all …]

12