Searched refs:use_facet (Results 1 - 21 of 21) sorted by relevance

/external/stlport/stlport/
H A 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<ctyp
[all...]
/external/stlport/test/eh/
H A Dlocale.cpp31 const numpunct<char>& num_punct=use_facet<numpunct<char> >(cout.getloc());
34 use_facet<time_put<char, ostreambuf_iterator<char, char_traits<char> > > >(cout.getloc());
42 const ctype<char>& char_type=use_facet<ctype<char> >(cout.getloc());
/external/stlport/test/unit/
H A Dcollate_facets_test.cpp20 collate<char> const& col = use_facet<collate<char> >(locale::classic());
40 collate<char> const& col = use_facet<collate<char> >(loc);
56 collate<char> const& col = use_facet<collate<char> >(loc);
87 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc);
104 collate<wchar_t> const& col = use_facet<collate<wchar_t> >(loc);
213 collate<char> const& cfacet_byname = use_facet<collate<char> >(loc);
214 collate<char> const& cfacet = use_facet<collate<char> >(locale::classic());
H A Dmoney_facets_test.cpp61 money_put<char> const& fmp = use_facet<money_put<char> >(loc);
63 money_get<char> const& fmg = use_facet<money_get<char> >(loc);
75 moneypunct<char, true> const& intl_fmp = use_facet<moneypunct<char, true> >(loc);
188 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
283 money_put<char> const& fmp = use_facet<money_put<char> >(loc);
293 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
355 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
539 moneypunct<char, false> const& cfacet_byname = use_facet<moneypunct<char, false> >(loc);
540 moneypunct<char, false> const& cfacet = use_facet<moneypunct<char, false> >(locale::classic());
568 moneypunct<char, true> const& cfacet_byname = use_facet<moneypunc
[all...]
H A Dnum_facets_test.cpp37 numpunct<char> const& npct = use_facet<numpunct<char> >(loc);
105 num_put<char> const& nput = use_facet<num_put<char> >(loc);
239 numpunct<char> const& cfacet_byname = use_facet<numpunct<char> >(loc);
240 numpunct<char> const& cfacet = use_facet<numpunct<char> >(locale::classic());
H A Dtime_facets_test.cpp30 const time_put_facet& tmp = use_facet<time_put_facet>(loc);
50 const time_get_facet& tmg = use_facet<time_get_facet>(loc);
112 const time_put_facet& tmp = use_facet<time_put_facet>(loc);
132 const time_get_facet& tmg = use_facet<time_get_facet>(loc);
H A Dcodecvt_test.cpp390 cdecvt_type const& cdect = use_facet<cdecvt_type>(loc);
437 cdecvt_type const& cdect = use_facet<cdecvt_type>(loc);
512 codecvt<wchar_t, char, mbstate_t> const& cvt = use_facet<codecvt<wchar_t, char, mbstate_t> >(loc);
530 codecvt<wchar_t, char, mbstate_t> const& cvt = use_facet<codecvt<wchar_t, char, mbstate_t> >(loc);
570 codecvt<wchar_t, char, mbstate_t> const& cvt = use_facet<codecvt<wchar_t, char, mbstate_t> >(loc);
H A Dctype_facets_test.cpp30 ctype<char> const& ct = use_facet<ctype<char> >(loc);
174 ctype<wchar_t> const& wct = use_facet<ctype<wchar_t> >(loc);
429 ctype<char> const& ct = use_facet<ctype<char> >(loc);
441 ctype<char> const& cfacet_byname = use_facet<ctype<char> >(loc);
442 ctype<char> const& cfacet = use_facet<ctype<char> >(locale::classic());
/external/stlport/stlport/stl/
H A D_num_put.c78 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__f.getloc());
121 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc());
135 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__f.getloc());
196 const ctype<wchar_t>& __ct = use_facet<ctype<wchar_t> >(__loc);
206 const numpunct<wchar_t>& __np = use_facet<numpunct<wchar_t> >(__loc);
237 const numpunct<char>& __np = use_facet<numpunct<char> >(__f.getloc());
387 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc());
477 const ctype<_CharT>& __c_type = use_facet<ctype<_CharT> >(__f.getloc());
H A D_monetary.c138 const _Punct& __punct = use_facet<_Punct>(__loc) ;
139 const _Punct_intl& __punct_intl = use_facet<_Punct_intl>(__loc) ;
140 const _Ctype& __c_type = use_facet<_Ctype>(__loc) ;
326 const _Ctype& __c_type = use_facet<_Ctype>(__loc) ;
327 const _Punct& __punct = use_facet<_Punct>(__loc) ;
328 const _Punct_intl& __punct_intl = use_facet<_Punct_intl>(__loc) ;
H A D_ios.c76 _M_cached_ctype = &use_facet<ctype<char_type> >(__loc);
H A D_iosfwd.h93 # define use_facet *_Use_facet macro
95 inline const _Facet& use_facet(const locale&);
H A D_time_facets.c153 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__s.getloc());
405 const ctype<_Ch>& _Ct = use_facet<ctype<_Ch> >(__f.getloc());
429 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__f.getloc());
H A D_collate.h165 collate<_CharT> const& __coll = use_facet<collate<_CharT> >(__loc);
H A D_num_get.c250 const ctype<_CharT>& __ctype = use_facet<ctype<_CharT> >(__loc);
273 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
430 const ctype<_CharT> &__ctype = use_facet<ctype<_CharT> >(__loc);
431 const numpunct<_CharT> &__numpunct = use_facet<numpunct<_CharT> >(__loc);
451 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__str.getloc());
H A D_string_io.c84 const _C_type& _Ctype = use_facet<_C_type>(__loc);
H A D_fstream.c737 _M_codecvt = &use_facet<_Codecvt>(__loc) ;
751 use_facet<_Codecvt>(__loc);
H A D_locale.h292 use_facet(const locale& __loc)
H A D_ostream.c202 __failed = (use_facet<_NumPut>(__os.getloc())).put(ostreambuf_iterator<_CharT, _Traits>(__os.rdbuf()),
H A D_istream.c193 // Do not remove additional parenthesis around use_facet instanciation, some compilers (VC6)
195 (use_facet<_Num_get>(__that.getloc())).get(istreambuf_iterator<_CharT, _Traits>(__that.rdbuf()),
/external/stlport/src/
H A Dmessages.cpp40 wctype const& wct = use_facet<wctype>(L);
152 const wctype& ct = use_facet<wctype>(_M_map->lookup(_STLP_MUTABLE(_Messages_impl, _M_cat)[thecat]));

Completed in 237 milliseconds