Home
last modified time | relevance | path

Searched refs:__loc (Results 1 – 12 of 12) 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 int __base, locale_t __loc) { in strtoull_l() argument
53 int __base, locale_t __loc) { in strtoul_l() argument
58 locale_t __loc) { in strtof_l() argument
63 locale_t __loc) { in strtod_l() argument
68 locale_t __loc) { in strtold_l() argument
/external/libcxx/include/
D__locale707 isspace(_CharT __c, const locale& __loc)
709 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
715 isprint(_CharT __c, const locale& __loc)
717 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
723 iscntrl(_CharT __c, const locale& __loc)
725 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
731 isupper(_CharT __c, const locale& __loc)
733 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c);
739 islower(_CharT __c, const locale& __loc)
741 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);
Dlocale400 locale __loc = __iob.getloc();
401 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 26, __atoms);
402 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
412 locale __loc = __iob.getloc();
413 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 32, __atoms);
414 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
1069 const locale& __loc);
1072 const locale& __loc);
1079 const locale& __loc)
1081 const ctype<_CharT>& __ct = use_facet<ctype<_CharT> > (__loc);
[all …]
Dstreambuf136 locale pubimbue(const locale& __loc) {
137 imbue(__loc);
139 __loc_ = __loc;
263 virtual void imbue(const locale& __loc);
Dios296 locale imbue(const locale& __loc);
644 locale imbue(const locale& __loc);
734 basic_ios<_CharT, _Traits>::imbue(const locale& __loc)
737 ios_base::imbue(__loc);
739 rdbuf()->pubimbue(__loc);
Dfstream229 virtual void imbue(const locale& __loc);
917 basic_filebuf<_CharT, _Traits>::imbue(const locale& __loc)
920 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
Dmemory3204 void destroy_at(_Tp* __loc) {
3205 _LIBCPP_ASSERT(__loc, "null pointer given to destroy_at");
3206 __loc->~_Tp();
Dregex2652 locale_type imbue(locale_type __loc)
2656 return __traits_.imbue(__loc);
/external/libcxx/src/support/solaris/
Dxlocale.cpp59 size_t __max, mbstate_t *__ps, locale_t __loc) { in mbrtowc_l() argument
/external/libcxx/include/experimental/
Dfilesystem705 path(const _Source& __src, const locale& __loc);
707 path(_InputIt __first, _InputIt _last, const locale& __loc);
/external/libcxx/src/
Dlocale.cpp4212 __locale_struct* __loc) { in checked_string_to_char_convert() argument
4222 if (!checked_string_to_wchar_convert(wout, ptr, __loc)) in checked_string_to_char_convert()
4225 if ((res = __libcpp_wctob_l(wout, __loc)) != char_traits<char>::eof()) { in checked_string_to_char_convert()