Home
last modified time | relevance | path

Searched refs:__loc (Results 1 – 9 of 9) sorted by relevance

/external/libcxx/include/support/solaris/
Dxlocale.h38 int __base, locale_t __loc) { in strtoll_l() argument
43 int __base, locale_t __loc) { in strtol_l() argument
48 locale_t __loc) { in strtold_l() argument
53 int __base, locale_t __loc) { in strtoull_l() argument
58 int __base, locale_t __loc) { in strtoul_l() argument
/external/libcxx/include/
D__locale703 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);
[all …]
D__std_stream50 virtual void imbue(const locale& __loc);
80 __stdinbuf<_CharT>::imbue(const locale& __loc)
82 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
238 virtual void imbue(const locale& __loc);
349 __stdoutbuf<_CharT>::imbue(const locale& __loc)
352 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
Dstreambuf135 locale pubimbue(const locale& __loc);
184 virtual void imbue(const locale& __loc);
225 basic_streambuf<_CharT, _Traits>::pubimbue(const locale& __loc)
227 imbue(__loc);
229 __loc_ = __loc;
Dlocale576 locale __loc = __iob.getloc();
577 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 26, __atoms);
578 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
588 locale __loc = __iob.getloc();
589 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 32, __atoms);
590 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
1223 const locale& __loc);
1226 const locale& __loc);
1233 const locale& __loc)
1235 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> > (__loc);
[all …]
Dios293 locale imbue(const locale& __loc);
622 locale imbue(const locale& __loc);
712 basic_ios<_CharT, _Traits>::imbue(const locale& __loc)
715 ios_base::imbue(__loc);
717 rdbuf()->pubimbue(__loc);
Dfstream226 virtual void imbue(const locale& __loc);
916 basic_filebuf<_CharT, _Traits>::imbue(const locale& __loc)
919 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
Dregex2640 locale_type imbue(locale_type __loc)
2644 return __traits_.imbue(__loc);
/external/libcxx/src/support/solaris/
Dxlocale.c58 size_t __max, mbstate_t *__ps, locale_t __loc) { in mbrtowc_l() argument