HomeSort by relevance Sort by last modified time
    Searched refs:use_facet (Results 1 - 21 of 21) sorted by null

  /external/stlport/stlport/
locale 84 { 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/
locale.cpp 31 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/
collate_facets_test.cpp 20 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());
money_facets_test.cpp 61 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<moneypunct<char, true> >(loc)
    [all...]
num_facets_test.cpp 37 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());
time_facets_test.cpp 30 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);
codecvt_test.cpp 390 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);
ctype_facets_test.cpp 30 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/
_iosfwd.h 93 # define use_facet *_Use_facet macro
95 inline const _Facet& use_facet(const locale&);
_num_put.c 78 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());
_monetary.c 138 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) ;
_ios.c 76 _M_cached_ctype = &use_facet<ctype<char_type> >(__loc);
_num_get.c 250 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());
_time_facets.c 153 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());
_collate.h 165 collate<_CharT> const& __coll = use_facet<collate<_CharT> >(__loc);
_string_io.c 84 const _C_type& _Ctype = use_facet<_C_type>(__loc);
_fstream.c 737 _M_codecvt = &use_facet<_Codecvt>(__loc) ;
751 use_facet<_Codecvt>(__loc);
_locale.h 290 use_facet(const locale& __loc)
_ostream.c 202 __failed = (use_facet<_NumPut>(__os.getloc())).put(ostreambuf_iterator<_CharT, _Traits>(__os.rdbuf()),
_istream.c 193 // 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()),
    [all...]
  /external/stlport/src/
messages.cpp 40 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 487 milliseconds