Lines Matching refs:mask
321 typedef unsigned short mask;
322 static const mask space = _ISspace;
323 static const mask print = _ISprint;
324 static const mask cntrl = _IScntrl;
325 static const mask upper = _ISupper;
326 static const mask lower = _ISlower;
327 static const mask alpha = _ISalpha;
328 static const mask digit = _ISdigit;
329 static const mask punct = _ISpunct;
330 static const mask xdigit = _ISxdigit;
331 static const mask blank = _ISblank;
333 typedef unsigned short mask;
334 static const mask space = _SPACE;
335 static const mask print = _BLANK|_PUNCT|_ALPHA|_DIGIT;
336 static const mask cntrl = _CONTROL;
337 static const mask upper = _UPPER;
338 static const mask lower = _LOWER;
339 static const mask alpha = _ALPHA;
340 static const mask digit = _DIGIT;
341 static const mask punct = _PUNCT;
342 static const mask xdigit = _HEX;
343 static const mask blank = _BLANK;
346 typedef __uint32_t mask;
348 typedef unsigned long mask;
350 typedef unsigned short mask;
352 static const mask space = _CTYPE_S;
353 static const mask print = _CTYPE_R;
354 static const mask cntrl = _CTYPE_C;
355 static const mask upper = _CTYPE_U;
356 static const mask lower = _CTYPE_L;
357 static const mask alpha = _CTYPE_A;
358 static const mask digit = _CTYPE_D;
359 static const mask punct = _CTYPE_P;
360 static const mask xdigit = _CTYPE_X;
362 static const mask blank = _CTYPE_BL;
364 static const mask blank = _CTYPE_B;
367 typedef unsigned int mask;
368 static const mask space = _ISSPACE;
369 static const mask print = _ISPRINT;
370 static const mask cntrl = _ISCNTRL;
371 static const mask upper = _ISUPPER;
372 static const mask lower = _ISLOWER;
373 static const mask alpha = _ISALPHA;
374 static const mask digit = _ISDIGIT;
375 static const mask punct = _ISPUNCT;
376 static const mask xdigit = _ISXDIGIT;
377 static const mask blank = _ISBLANK;
392 typedef unsigned short mask;
393 static const mask space = _S;
394 static const mask print = _P | _U | _L | _N | _B;
395 static const mask cntrl = _C;
396 static const mask upper = _U;
397 static const mask lower = _L;
398 static const mask alpha = _U | _L;
399 static const mask digit = _N;
400 static const mask punct = _P;
401 static const mask xdigit = _N | _X;
403 static const mask blank = 0x100;
405 typedef unsigned long mask;
406 static const mask space = 1<<0;
407 static const mask print = 1<<1;
408 static const mask cntrl = 1<<2;
409 static const mask upper = 1<<3;
410 static const mask lower = 1<<4;
411 static const mask alpha = 1<<5;
412 static const mask digit = 1<<6;
413 static const mask punct = 1<<7;
414 static const mask xdigit = 1<<8;
415 static const mask blank = 1<<9;
417 static const mask alnum = alpha | digit;
418 static const mask graph = alnum | punct;
438 bool is(mask __m, char_type __c) const
444 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
450 const char_type* scan_is(mask __m, const char_type* __low, const char_type* __high) const
456 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
513 virtual bool do_is(mask __m, char_type __c) const;
514 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
515 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
516 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…
531 const mask* __tab_;
536 explicit ctype(const mask* __tab = 0, bool __del = false, size_t __refs = 0);
539 bool is(mask __m, char_type __c) const
545 const char_type* is(const char_type* __low, const char_type* __high, mask* __vec) const
553 const char_type* scan_is (mask __m, const char_type* __low, const char_type* __high) const
562 const char_type* scan_not(mask __m, const char_type* __low, const char_type* __high) const
625 _LIBCPP_ALWAYS_INLINE const mask* table() const _NOEXCEPT {return __tab_;}
626 static const mask* classic_table() _NOEXCEPT;
682 virtual bool do_is(mask __m, char_type __c) const;
683 …virtual const char_type* do_is(const char_type* __low, const char_type* __high, mask* __vec) const;
684 …virtual const char_type* do_scan_is(mask __m, const char_type* __low, const char_type* __high) con…
685 …virtual const char_type* do_scan_not(mask __m, const char_type* __low, const char_type* __high) co…