Lines Matching refs:__loc
703 isspace(_CharT __c, const locale& __loc)
705 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
711 isprint(_CharT __c, const locale& __loc)
713 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
719 iscntrl(_CharT __c, const locale& __loc)
721 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
727 isupper(_CharT __c, const locale& __loc)
729 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c);
735 islower(_CharT __c, const locale& __loc)
737 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c);
743 isalpha(_CharT __c, const locale& __loc)
745 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c);
751 isdigit(_CharT __c, const locale& __loc)
753 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::digit, __c);
759 ispunct(_CharT __c, const locale& __loc)
761 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c);
767 isxdigit(_CharT __c, const locale& __loc)
769 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c);
775 isalnum(_CharT __c, const locale& __loc)
777 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c);
783 isgraph(_CharT __c, const locale& __loc)
785 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::graph, __c);
791 toupper(_CharT __c, const locale& __loc)
793 return use_facet<ctype<_CharT> >(__loc).toupper(__c);
799 tolower(_CharT __c, const locale& __loc)
801 return use_facet<ctype<_CharT> >(__loc).tolower(__c);