Lines Matching refs:__loc

1628       _M_cache(const locale& __loc);
2565 isspace(_CharT __c, const locale& __loc)
2566 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c); }
2571 isprint(_CharT __c, const locale& __loc)
2572 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c); }
2577 iscntrl(_CharT __c, const locale& __loc)
2578 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c); }
2583 isupper(_CharT __c, const locale& __loc)
2584 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c); }
2589 islower(_CharT __c, const locale& __loc)
2590 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c); }
2595 isalpha(_CharT __c, const locale& __loc)
2596 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c); }
2601 isdigit(_CharT __c, const locale& __loc)
2602 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::digit, __c); }
2607 ispunct(_CharT __c, const locale& __loc)
2608 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c); }
2613 isxdigit(_CharT __c, const locale& __loc)
2614 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c); }
2619 isalnum(_CharT __c, const locale& __loc)
2620 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c); }
2625 isgraph(_CharT __c, const locale& __loc)
2626 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::graph, __c); }
2632 isblank(_CharT __c, const locale& __loc)
2633 { return use_facet<ctype<_CharT> >(__loc).is(ctype_base::blank, __c); }
2639 toupper(_CharT __c, const locale& __loc)
2640 { return use_facet<ctype<_CharT> >(__loc).toupper(__c); }
2645 tolower(_CharT __c, const locale& __loc)
2646 { return use_facet<ctype<_CharT> >(__loc).tolower(__c); }