Home | History | Annotate | Download | only in bits

Lines Matching refs:ctype_base

43 #include <bits/ctype_base.h>	
131 // Include host and configuration specific ctype enums for ctype_base.
144 class __ctype_abstract_base : public locale::facet, public ctype_base
674 class ctype<char> : public locale::facet, public ctype_base
2518 /// Convenience interface to ctype.is(ctype_base::space, __c).
2522 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c); }
2524 /// Convenience interface to ctype.is(ctype_base::print, __c).
2528 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c); }
2530 /// Convenience interface to ctype.is(ctype_base::cntrl, __c).
2534 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); }
2536 /// Convenience interface to ctype.is(ctype_base::upper, __c).
2540 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); }
2542 /// Convenience interface to ctype.is(ctype_base::lower, __c).
2546 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c); }
2548 /// Convenience interface to ctype.is(ctype_base::alpha, __c).
2552 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c); }
2554 /// Convenience interface to ctype.is(ctype_base::digit, __c).
2558 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::digit, __c); }
2560 /// Convenience interface to ctype.is(ctype_base::punct, __c).
2564 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c); }
2566 /// Convenience interface to ctype.is(ctype_base::xdigit, __c).
2570 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c); }
2572 /// Convenience interface to ctype.is(ctype_base::alnum, __c).
2576 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c); }
2578 /// Convenience interface to ctype.is(ctype_base::graph, __c).
2582 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::graph, __c); }