Home
last modified time | relevance | path

Searched refs:use_facet (Results 1 – 25 of 25) sorted by relevance

/external/stlport/stlport/
Dlocale84 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::space, c); }
88 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::print, c); }
92 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::cntrl, c); }
96 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::upper, c); }
100 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::lower, c); }
104 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alpha, c); }
108 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::digit, c); }
112 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::punct, c); }
116 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::xdigit, c); }
120 { return (use_facet<ctype<_CharT> >(loc)).is(ctype_base::alnum, c); }
[all …]
/external/stlport/test/eh/
Dlocale.cpp31 const numpunct<char>& num_punct=use_facet<numpunct<char> >(cout.getloc()); in main()
34 use_facet<time_put<char, ostreambuf_iterator<char, char_traits<char> > > >(cout.getloc()); in main()
42 const ctype<char>& char_type=use_facet<ctype<char> >(cout.getloc()); in main()
/external/stlport/test/unit/
Dmoney_facets_test.cpp61 money_put<char> const& fmp = use_facet<money_put<char> >(loc); in _money_put_get2()
63 money_get<char> const& fmg = use_facet<money_get<char> >(loc); in _money_put_get2()
75 moneypunct<char, true> const& intl_fmp = use_facet<moneypunct<char, true> >(loc); in _money_put_get2()
188 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc); in _money_put_get2()
283 money_put<char> const& fmp = use_facet<money_put<char> >(loc); in _money_put_X_bug()
293 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc); in _money_put_X_bug()
355 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc); in _money_put_X_bug()
539 moneypunct<char, false> const& cfacet_byname = use_facet<moneypunct<char, false> >(loc); in moneypunct_by_name()
540 moneypunct<char, false> const& cfacet = use_facet<moneypunct<char, false> >(locale::classic()); in moneypunct_by_name()
568 moneypunct<char, true> const& cfacet_byname = use_facet<moneypunct<char, true> >(loc); in moneypunct_by_name()
[all …]
Dcollate_facets_test.cpp20 collate<char> const& col = use_facet<collate<char> >(locale::classic()); in collate_facet()
40 collate<char> const& col = use_facet<collate<char> >(loc); in collate_facet()
56 collate<char> const& col = use_facet<collate<char> >(loc); in collate_facet()
87 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc); in collate_facet()
104 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc); in collate_facet()
213 collate<char> const& cfacet_byname = use_facet<collate<char> >(loc); in collate_by_name()
214 collate<char> const& cfacet = use_facet<collate<char> >(locale::classic()); in collate_by_name()
Dnum_facets_test.cpp37 numpunct<char> const& npct = use_facet<numpunct<char> >(loc); in _num_put_get()
105 num_put<char> const& nput = use_facet<num_put<char> >(loc); in _num_put_get()
239 numpunct<char> const& cfacet_byname = use_facet<numpunct<char> >(loc); in numpunct_by_name()
240 numpunct<char> const& cfacet = use_facet<numpunct<char> >(locale::classic()); in numpunct_by_name()
Dtime_facets_test.cpp30 const time_put_facet& tmp = use_facet<time_put_facet>(loc); in _time_put_get()
50 const time_get_facet& tmg = use_facet<time_get_facet>(loc); in _time_put_get()
112 const time_put_facet& tmp = use_facet<time_put_facet>(loc); in _time_put_get()
132 const time_get_facet& tmg = use_facet<time_get_facet>(loc); in _time_put_get()
Dcodecvt_test.cpp390 cdecvt_type const& cdect = use_facet<cdecvt_type>(loc); in in_out_test()
437 cdecvt_type const& cdect = use_facet<cdecvt_type>(loc); in length_test()
512 … codecvt<wchar_t, char, mbstate_t> const& cvt = use_facet<codecvt<wchar_t, char, mbstate_t> >(loc); in special_encodings()
530 … codecvt<wchar_t, char, mbstate_t> const& cvt = use_facet<codecvt<wchar_t, char, mbstate_t> >(loc); in special_encodings()
570 … codecvt<wchar_t, char, mbstate_t> const& cvt = use_facet<codecvt<wchar_t, char, mbstate_t> >(loc); in special_encodings()
Dctype_facets_test.cpp30 ctype<char> const& ct = use_facet<ctype<char> >(loc); in _ctype_facet()
174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc); in _ctype_facet_w()
429 ctype<char> const& ct = use_facet<ctype<char> >(loc); in ctype_by_name()
441 ctype<char> const& cfacet_byname = use_facet<ctype<char> >(loc); in ctype_by_name()
442 ctype<char> const& cfacet = use_facet<ctype<char> >(locale::classic()); in ctype_by_name()
/external/stlport/stlport/stl/
D_num_put.c78 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__f.getloc()); in __put_float()
121 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc()); in __do_put_float()
135 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__f.getloc()); in __get_money_digits_aux()
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()
237 const numpunct<char>& __np = use_facet<numpunct<char> >(__f.getloc()); in __put_integer()
387 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc()); in __do_put_bool()
477 const ctype<_CharT>& __c_type = use_facet<ctype<_CharT> >(__f.getloc()); in do_put()
D_monetary.c138 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()
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_iosfwd.h93 # define use_facet *_Use_facet macro
95 inline const _Facet& use_facet(const locale&);
D_num_get.c250 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()
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()
451 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__str.getloc()); in __do_get_alphabool()
D_time_facets.c153 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__s.getloc()); in _STLP_WEAK()
405 const ctype<_Ch>& _Ct = use_facet<ctype<_Ch> >(__f.getloc()); in put()
429 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__f.getloc()); in do_put()
D_ios.c76 _M_cached_ctype = &use_facet<ctype<char_type> >(__loc); in imbue()
D_collate.h165 collate<_CharT> const& __coll = use_facet<collate<_CharT> >(__loc); in __locale_do_operator_call()
D_string_io.c84 const _C_type& _Ctype = use_facet<_C_type>(__loc);
D_fstream.c737 _M_codecvt = &use_facet<_Codecvt>(__loc) ; in _M_setup_codecvt()
751 use_facet<_Codecvt>(__loc); in _M_setup_codecvt()
D_locale.h292 use_facet(const locale& __loc)
D_ostream.c202 …__failed = (use_facet<_NumPut>(__os.getloc())).put(ostreambuf_iterator<_CharT, _Traits>(__os.rdbuf… in __put_num()
D_istream.c195 … (use_facet<_Num_get>(__that.getloc())).get(istreambuf_iterator<_CharT, _Traits>(__that.rdbuf()), in __get_num()
/external/stlport/src/
Dmessages.cpp40 wctype const& wct = use_facet<wctype>(L); in insert()
152 …const wctype& ct = use_facet<wctype>(_M_map->lookup(_STLP_MUTABLE(_Messages_impl, _M_cat)[thecat])… in do_get()
/external/stlport/stlport/using/
Dlocale10 using _STLP_NEW_IO_NAMESPACE::use_facet;
/external/stlport/doc/
DREADME.utf838 const codecvt_t& encoding = use_facet<codecvt_t>(loc);
/external/stlport/etc/
DChangeLog205 the use_facet<Facet>(getloc()) function. Only _M_cached_ctype has been
207 enhancement compared to using use_facet.
1016 Moreover, prefer to use the use_facet function rather than _M_get_facet
2215 moment function is called in arbitrary places, in std::use_facet
2244 * stlport/stl/_istream.c: Add parenthesis on a use_facet call to make
DChangeLog-5.16003 use_facet, only the STLport standard one is used.
7768 use_facet<> now fully conforms to the standard with VC++. (Thanks Jeff Kohn for the input)