Home
last modified time | relevance | path

Searched refs:__loc (Results 1 – 13 of 13) 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__locale51 __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)
[all …]
D__std_stream52 virtual void imbue(const locale& __loc);
82 __stdinbuf<_CharT>::imbue(const locale& __loc)
84 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
240 virtual void imbue(const locale& __loc);
351 __stdoutbuf<_CharT>::imbue(const locale& __loc)
354 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
Dlocale393 locale __loc = __iob.getloc();
394 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
412 locale __loc = __iob.getloc();
413 use_facet<ctype<T> >(__loc).widen(__src, __src + 26, __atoms);
431 locale __loc = __iob.getloc();
432 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 26, __atoms);
433 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
444 locale __loc = __iob.getloc();
445 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 32, __atoms);
446 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
[all …]
Dstreambuf142 locale pubimbue(const locale& __loc) {
143 imbue(__loc);
145 __loc_ = __loc;
272 virtual void imbue(const locale& __loc);
Dios296 locale imbue(const locale& __loc);
647 locale imbue(const locale& __loc);
737 basic_ios<_CharT, _Traits>::imbue(const locale& __loc)
740 ios_base::imbue(__loc);
742 rdbuf()->pubimbue(__loc);
Dfstream264 virtual void imbue(const locale& __loc);
1048 basic_filebuf<_CharT, _Traits>::imbue(const locale& __loc)
1051 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
Dfilesystem783 path(const _Source& __src, const locale& __loc, format = format::auto_format);
785 path(_InputIt __first, _InputIt _last, const locale& __loc,
Dmemory3325 void destroy_at(_Tp* __loc) {
3326 _LIBCPP_ASSERT(__loc, "null pointer given to destroy_at");
3327 __loc->~_Tp();
Dregex2669 locale_type imbue(locale_type __loc)
2673 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/support/win32/
Dlocale_win32.h177 #define strftime_l( __s, __l, __f, __tm, __loc ) strftime( __s, __l, __f, __tm ) argument
/external/libcxx/src/
Dlocale.cpp4223 locale_t __loc) { in checked_string_to_char_convert() argument
4233 if (!checked_string_to_wchar_convert(wout, ptr, __loc)) in checked_string_to_char_convert()
4236 if ((res = __libcpp_wctob_l(wout, __loc)) != char_traits<char>::eof()) { in checked_string_to_char_convert()