Home | History | Annotate | Download | only in bits

Lines Matching refs:mask

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