Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
Dc_locale_glibc2.c160 char const*_Locale_ctype_name( const struct _Locale_ctype *__loc, char *buf ) in _Locale_ctype_name() argument
162 return ((locale_t)__loc)->__names[LC_CTYPE]; in _Locale_ctype_name()
165 char const*_Locale_codecvt_name( const struct _Locale_codecvt *__loc, char *buf ) in _Locale_codecvt_name() argument
170 char const*_Locale_numeric_name( const struct _Locale_numeric *__loc, char *buf ) in _Locale_numeric_name() argument
172 return ((locale_t)__loc)->__names[LC_NUMERIC]; in _Locale_numeric_name()
175 char const*_Locale_time_name( const struct _Locale_time *__loc, char *buf ) in _Locale_time_name() argument
177 return ((locale_t)__loc)->__names[LC_TIME]; in _Locale_time_name()
180 char const*_Locale_collate_name( const struct _Locale_collate *__loc, char *buf ) in _Locale_collate_name() argument
182 return ((locale_t)__loc)->__names[LC_COLLATE]; in _Locale_collate_name()
185 char const*_Locale_monetary_name( const struct _Locale_monetary *__loc, char *buf ) in _Locale_monetary_name() argument
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_locale.h52 bool __locale_do_operator_call(const locale& __loc,
62 bool _HasFacet(const locale& __loc, const _Facet* __facet) _STLP_NOTHROW;
65 _Facet* _UseFacet(const locale& __loc, const _Facet* __facet);
68 void _InsertFacet(locale& __loc, _Facet* __facet);
127 locale(const locale& __loc, _Facet* __f) { in locale() argument
129 this->_M_impl = _get_Locale_impl( _copy_Nameless_Locale_impl( __loc._M_impl ) ); in locale()
132 this->_M_impl = _get_Locale_impl( __loc._M_impl ); in locale()
154 locale combine(const locale& __loc) const { in combine() argument
156 if (!_STLP_PRIV _HasFacet(__loc, __facet)) in combine()
157 _M_throw_on_combine_error(__loc.name()); in combine()
[all …]
D_messages_facets.h63 catalog open(const string& __fn, const locale& __loc) const in open() argument
64 { return do_open(__fn, __loc); } in open()
76 virtual catalog do_open(const string& __fn, const locale& __loc) const in do_open() argument
96 inline catalog open(const string& __fn, const locale& __loc) const in open() argument
97 { return do_open(__fn, __loc); } in open()
109 virtual catalog do_open(const string& __fn, const locale& __loc) const in do_open() argument
134 virtual catalog do_open(const string& __fn, const locale& __loc) const;
162 virtual catalog do_open(const string& __fn, const locale& __loc) const;
D_ios.c69 locale basic_ios<_CharT, _Traits>::imbue(const locale& __loc) { in imbue() argument
70 locale __tmp = ios_base::imbue(__loc); in imbue()
73 _M_streambuf->pubimbue(__loc); in imbue()
76 _M_cached_ctype = &use_facet<ctype<char_type> >(__loc); in imbue()
D_monetary.c137 locale __loc = __str.getloc(); in __money_do_get() local
138 const _Punct& __punct = use_facet<_Punct>(__loc) ; in __money_do_get()
139 const _Punct_intl& __punct_intl = use_facet<_Punct_intl>(__loc) ; in __money_do_get()
140 const _Ctype& __c_type = use_facet<_Ctype>(__loc) ; in __money_do_get()
325 locale __loc = __str.getloc(); in __money_do_put() local
326 const _Ctype& __c_type = use_facet<_Ctype>(__loc) ; in __money_do_put()
327 const _Punct& __punct = use_facet<_Punct>(__loc) ; in __money_do_put()
328 const _Punct_intl& __punct_intl = use_facet<_Punct_intl>(__loc) ; in __money_do_put()
D_streambuf.c45 basic_streambuf<_CharT, _Traits>::pubimbue(const locale& __loc) { in pubimbue() argument
46 this->imbue(__loc); in pubimbue()
48 _M_locale = __loc; in pubimbue()
D_fstream.c413 void basic_filebuf<_CharT, _Traits>::imbue(const locale& __loc) { in imbue() argument
415 this->_M_setup_codecvt(__loc); in imbue()
735 void basic_filebuf<_CharT, _Traits>::_M_setup_codecvt(const locale& __loc, bool __on_imbue) { in _M_setup_codecvt() argument
736 if (has_facet<_Codecvt>(__loc)) { in _M_setup_codecvt()
737 _M_codecvt = &use_facet<_Codecvt>(__loc) ; in _M_setup_codecvt()
751 use_facet<_Codecvt>(__loc); in _M_setup_codecvt()
D_collate.h162 __locale_do_operator_call (const locale& __loc, in __locale_do_operator_call() argument
165 collate<_CharT> const& __coll = use_facet<collate<_CharT> >(__loc); in __locale_do_operator_call()
D_iosfwd.h89 const locale& __loc; member
90 _Use_facet(const locale& __p_loc) : __loc(__p_loc) {} in _Use_facet()
D_string_io.c83 const locale& __loc = __is.getloc();
84 const _C_type& _Ctype = use_facet<_C_type>(__loc);
D_num_get.c249 locale __loc = __str.getloc(); in __do_get_integer() local
250 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc); in __do_get_integer()
273 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); in __do_get_integer()
429 locale __loc = __str.getloc(); in __do_get_float() local
430 const ctype<_CharT> &__ctype = use_facet<ctype<_CharT> >(__loc); in __do_get_float()
431 const numpunct<_CharT> &__numpunct = use_facet<numpunct<_CharT> >(__loc); in __do_get_float()
D_num_put.c195 locale __loc = __f.getloc(); in __put_integer() local
196 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__loc); in __put_integer()
206 const numpunct<wchar_t>& __np = use_facet<numpunct<wchar_t> >(__loc); in __put_integer()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/
Dxlocale.h127 int __base, locale_t __loc) { in strtoll_l() argument
132 int __base, locale_t __loc) { in strtol_l() argument
137 locale_t __loc) { in strtold_l() argument
142 int __base, locale_t __loc) { in strtoull_l() argument
147 int __base, locale_t __loc) { in strtoul_l() argument
/ndk/sources/cxx-stl/stlport/src/
Dlocale_impl.h109 bool operator != (const locale& __loc) const { return __loc._M_impl != this; }
Dmessage_facets.h124 catalog do_open(const string& __fn, const locale& __loc) const;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
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);
350 __stdoutbuf<_CharT>::imbue(const locale& __loc)
353 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
D__locale699 isspace(_CharT __c, const locale& __loc)
701 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
707 isprint(_CharT __c, const locale& __loc)
709 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
715 iscntrl(_CharT __c, const locale& __loc)
717 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
723 isupper(_CharT __c, const locale& __loc)
725 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c);
731 islower(_CharT __c, const locale& __loc)
733 return use_facet<ctype<_CharT> >(__loc).is(ctype_base::lower, __c);
[all …]
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;
Dlocale569 locale __loc = __iob.getloc();
570 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 26, __atoms);
571 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
581 locale __loc = __iob.getloc();
582 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 32, __atoms);
583 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
1216 const locale& __loc);
1219 const locale& __loc);
1226 const locale& __loc)
1228 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);
Dfstream224 virtual void imbue(const locale& __loc);
912 basic_filebuf<_CharT, _Traits>::imbue(const locale& __loc)
915 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
Dregex2627 locale_type imbue(locale_type __loc)
2631 return __traits_.imbue(__loc);