Home
last modified time | relevance | path

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

/reactos/sdk/lib/3rdparty/stlport/src/c_locale_glibc/
H A Dc_locale_glibc2.c177 return ((locale_t)__loc)->__names[LC_TIME]; in _Locale_time_name()
196 { freelocale((locale_t)__loc); } in _Locale_ctype_destroy()
202 { freelocale((locale_t)__loc); } in _Locale_numeric_destroy()
205 { freelocale((locale_t)__loc); } in _Locale_time_destroy()
208 { freelocale((locale_t)__loc); } in _Locale_collate_destroy()
211 { freelocale((locale_t)__loc); } in _Locale_monetary_destroy()
214 { freelocale((locale_t)__loc); } in _Locale_messages_destroy()
284 return ((locale_t)__loc)->__ctype_b; in _Locale_ctype_table()
329 return towlower_l( c, ((locale_t)__loc) ); in _WLocale_tolower()
473 …return (_Locale_thousands_sep(__loc) != 0 ) ? (nl_langinfo_l(GROUPING, (locale_t)__loc)) : _empty_… in _Locale_grouping()
[all …]
/reactos/sdk/include/c++/stlport/stl/
H A D_locale.h221 locale(const locale& __loc) _STLP_NOTHROW : _Locale(__loc) {} in locale() argument
224 : _Locale(__loc, __str, __cat) {} in locale()
227 locale(const locale& __loc, _Facet* __f) in locale() argument
228 : _Locale(__f != 0 ? _copy_Nameless_Locale_impl(__loc._M_impl) : __loc._M_impl) { in locale()
237 locale(const _Locale& __loc) : _Locale(__loc) {} in locale() argument
245 _Locale::operator=(__loc);
259 bool operator==(const locale& __loc) const { return _Locale::operator==(__loc); }
260 bool operator!=(const locale& __loc) const { return _Locale::operator!=(__loc); }
269 return _Locale::global(__loc); in global()
290 use_facet(const locale& __loc)
[all …]
H A 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;
H A 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()
H A 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()
H A 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()
H A 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()
H A 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()
H A 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()
H A D_iosfwd.h89 const locale& __loc; member
90 _Use_facet(const locale& __p_loc) : __loc(__p_loc) {} in _Use_facet()
H A D_string_io.c83 const locale& __loc = __is.getloc();
84 const _C_type& _Ctype = use_facet<_C_type>(__loc);
H A 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()
/reactos/sdk/lib/3rdparty/stlport/src/
H A Dlocale_impl.h109 bool operator != (const locale& __loc) const { return __loc._M_impl != this; }
H A Dmessage_facets.h124 catalog do_open(const string& __fn, const locale& __loc) const;