Home | History | Annotate | Download | only in bits

Lines Matching refs:ctype_base

43 #include <bits/ctype_base.h>	
133 // Include host and configuration specific ctype enums for ctype_base.
145 class __ctype_abstract_base : public locale::facet, public ctype_base
675 class ctype<char> : public locale::facet, public ctype_base
2527 /// Convenience interface to ctype.is(ctype_base::space, __c).
2531 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c); }
2533 /// Convenience interface to ctype.is(ctype_base::print, __c).
2537 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c); }
2539 /// Convenience interface to ctype.is(ctype_base::cntrl, __c).
2543 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); }
2545 /// Convenience interface to ctype.is(ctype_base::upper, __c).
2549 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); }
2551 /// Convenience interface to ctype.is(ctype_base::lower, __c).
2555 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c); }
2557 /// Convenience interface to ctype.is(ctype_base::alpha, __c).
2561 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c); }
2563 /// Convenience interface to ctype.is(ctype_base::digit, __c).
2567 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::digit, __c); }
2569 /// Convenience interface to ctype.is(ctype_base::punct, __c).
2573 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c); }
2575 /// Convenience interface to ctype.is(ctype_base::xdigit, __c).
2579 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c); }
2581 /// Convenience interface to ctype.is(ctype_base::alnum, __c).
2585 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c); }
2587 /// Convenience interface to ctype.is(ctype_base::graph, __c).
2591 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::graph, __c); }