reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

usr/include/c++/7.4.0/bits/locale_facets.h
  169       is(mask __m, char_type __c) const
  186       is(const char_type *__lo, const char_type *__hi, mask *__vec) const
  202       scan_is(mask __m, const char_type* __lo, const char_type* __hi) const
  218       scan_not(mask __m, const char_type* __lo, const char_type* __hi) const
  378       do_is(mask __m, char_type __c) const = 0;
  398 	    mask* __vec) const = 0;
  416       do_scan_is(mask __m, const char_type* __lo,
  435       do_scan_not(mask __m, const char_type* __lo,
  694       const mask*		_M_table;
  718       ctype(const mask* __table = 0, bool __del = false, size_t __refs = 0);
  731       ctype(__c_locale __cloc, const mask* __table = 0, bool __del = false,
  744       is(mask __m, char __c) const;
  759       is(const char* __lo, const char* __hi, mask* __vec) const;
  773       scan_is(mask __m, const char* __lo, const char* __hi) const;
  787       scan_not(mask __m, const char* __lo, const char* __hi) const;
  980       const mask*
  985       static const mask*
 1199       mask                      _M_bit[16];
 1230       _M_convert_to_wmask(const mask __m) const throw();
 1250       do_is(mask __m, char_type __c) const;
 1269       do_is(const char_type* __lo, const char_type* __hi, mask* __vec) const;
 1287       do_scan_is(mask __m, const char_type* __lo, const char_type* __hi) const;
 1305       do_scan_not(mask __m, const char_type* __lo,
usr/include/c++/7.4.0/bits/regex.h
   96 	  typedef std::ctype_base::mask _BaseType;
usr/include/x86_64-linux-gnu/c++/7.4.0/bits/ctype_base.h
   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;
   61     static const mask blank	= _ISblank;
usr/include/x86_64-linux-gnu/c++/7.4.0/bits/ctype_inline.h
   43   is(mask __m, char __c) const
   48   is(const char* __low, const char* __high, mask* __vec) const
   57   scan_is(mask __m, const char* __low, const char* __high) const
   67   scan_not(mask __m, const char* __low, const char* __high) const