Lines Matching refs:use_facet
48 _LIBCPP_HIDE_FROM_ABI const _Facet& use_facet(const locale&);
109 const facet* use_facet(id&) const;
114 friend const _Facet& use_facet(const locale&);
158 return locale(*this, &const_cast<_Facet&>(std::use_facet<_Facet>(__other)));
167 inline _LIBCPP_HIDE_FROM_ABI const _Facet& use_facet(const locale& __l) {
168 return static_cast<const _Facet&>(*__l.use_facet(_Facet::id));
290 return std::use_facet<std::collate<_CharT> >(*this).compare(
662 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
667 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
672 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
677 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c);
682 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c);
687 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::alpha, __c);
692 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::digit, __c);
697 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::punct, __c);
702 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::xdigit, __c);
707 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::alnum, __c);
712 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::graph, __c);
717 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::blank, __c);
722 return std::use_facet<ctype<_CharT> >(__loc).toupper(__c);
727 return std::use_facet<ctype<_CharT> >(__loc).tolower(__c);