Home | History | Annotate | Download | only in bits

Lines Matching refs:mask

47     // on the mask type. Because of this, we don't use an enum.
48 typedef unsigned short mask;
49 static const mask upper = _ISupper;
50 static const mask lower = _ISlower;
51 static const mask alpha = _ISalpha;
52 static const mask digit = _ISdigit;
53 static const mask xdigit = _ISxdigit;
54 static const mask space = _ISspace;
55 static const mask print = _ISprint;
56 static const mask graph = _ISalpha | _ISdigit | _ISpunct;
57 static const mask cntrl = _IScntrl;
58 static const mask punct = _ISpunct;
59 static const mask alnum = _ISalpha | _ISdigit;