• Home
  • Raw
  • Download

Lines Matching refs:__loc

51   __libcpp_locale_guard(locale_t& __loc) : __old_loc_(uselocale(__loc)) {}
751 isspace(_CharT __c, const locale& __loc)
753 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
759 isprint(_CharT __c, const locale& __loc)
761 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
767 iscntrl(_CharT __c, const locale& __loc)
769 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
775 isupper(_CharT __c, const locale& __loc)
777 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c);
783 islower(_CharT __c, const locale& __loc)
785 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c);
791 isalpha(_CharT __c, const locale& __loc)
793 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c);
799 isdigit(_CharT __c, const locale& __loc)
801 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::digit, __c);
807 ispunct(_CharT __c, const locale& __loc)
809 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c);
815 isxdigit(_CharT __c, const locale& __loc)
817 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c);
823 isalnum(_CharT __c, const locale& __loc)
825 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c);
831 isgraph(_CharT __c, const locale& __loc)
833 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::graph, __c);
839 toupper(_CharT __c, const locale& __loc)
841 return use_facet<ctype<_CharT> >(__loc).toupper(__c);
847 tolower(_CharT __c, const locale& __loc)
849 return use_facet<ctype<_CharT> >(__loc).tolower(__c);