/external/stlport/src/ |
numpunct.cpp | 25 // numpunct<char> 26 char numpunct<char>::do_decimal_point() const {return '.';} 27 char numpunct<char>::do_thousands_sep() const { return ','; } 28 string numpunct<char>::do_grouping() const { return string();} 29 string numpunct<char>::do_truename() const { return "true";} 30 string numpunct<char>::do_falsename() const { return "false"; } 31 numpunct<char>::~numpunct() {} 34 wchar_t numpunct<wchar_t>::do_decimal_point() const { return L'.'; } 35 wchar_t numpunct<wchar_t>::do_thousands_sep() const { return L','; [all...] |
locale_impl.cpp | 241 this->insert(i2, numpunct<char>::id); 243 this->insert(i2, numpunct<wchar_t>::id); 255 locale::_M_throw_on_creation_failure(__err_code, name, "numpunct"); 269 locale::_M_throw_on_creation_failure(__err_code, name, "numpunct"); 280 this->insert(punct, numpunct<char>::id); 282 this->insert(wpunct, numpunct<wchar_t>::id); 637 new numpunct<char>(1), 651 new numpunct<wchar_t>(1), 682 locale::id numpunct<char>::id = { 6 } ; 691 locale::id numpunct<wchar_t>::id = { 19 } [all...] |
num_get.cpp | 29 // representing the valid group sizes as returned by the numpunct
|
facets_byname.cpp | 431 : numpunct<char>(refs) { 439 locale::_M_throw_on_creation_failure(__err_code, name, "numpunct"); 465 // numpunct<wchar_t> 472 : numpunct<wchar_t>(refs) { 480 locale::_M_throw_on_creation_failure(__err_code, name, "numpunct"); [all...] |
locale.cpp | 334 impl->insert( i2, _STLP_STD::numpunct<char>::id); 338 impl->insert( i2, _STLP_STD::numpunct<wchar_t>::id);
|
/external/stlport/stlport/stl/ |
_numpunct.h | 41 // numpunct facets 43 template <class _CharT> class numpunct {}; class 48 class _STLP_CLASS_DECLSPEC numpunct<char> : public locale::facet { class in inherits:locale::facet 53 explicit numpunct(size_t __refs = 0) function in class:numpunct 65 ~numpunct(); 77 class _STLP_CLASS_DECLSPEC numpunct<wchar_t> : public locale::facet { class in inherits:locale::facet 82 explicit numpunct(size_t __refs = 0) function in class:numpunct 94 ~numpunct(); 106 class _STLP_CLASS_DECLSPEC numpunct_byname<char> : public numpunct<char> { 138 class _STLP_CLASS_DECLSPEC numpunct_byname<wchar_t>: public numpunct<wchar_t> [all...] |
_num_put.c | 121 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__f.getloc()); 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());
|
_num_get.c | 273 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc); 369 const ctype<_CharT> &__ct, const numpunct<_CharT> &__numpunct) { 431 const numpunct<_CharT> &__numpunct = use_facet<numpunct<_CharT> >(__loc); 451 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__str.getloc());
|
_num_get.h | 130 typedef numpunct<_CharT> _Numpunct;
|
/external/stlport/test/eh/ |
locale.cpp | 31 const numpunct<char>& num_punct=use_facet<numpunct<char> >(cout.getloc());
|
/external/stlport/test/unit/ |
num_facets_test.cpp | 36 CPPUNIT_ASSERT( has_facet<numpunct<char> >(loc) ); 37 numpunct<char> const& npct = use_facet<numpunct<char> >(loc); 239 numpunct<char> const& cfacet_byname = use_facet<numpunct<char> >(loc); 240 numpunct<char> const& cfacet = use_facet<numpunct<char> >(locale::classic());
|
locale_test.cpp | 147 typedef numpunct<char> implemented_facet; 306 locale loc = loc2.combine<numpunct<char> >(loc1); 323 loc1.combine<numpunct<char> >(loc1);
|
num_put_get_test.cpp | [all...] |
/external/stlport/ |
Android.mk | 27 src/numpunct.cpp \
|
/external/stlport/stlport/using/ |
locale | 39 using _STLP_NEW_IO_NAMESPACE::numpunct;
|
/external/stlport/etc/ |
ChangeLog | [all...] |
ChangeLog-5.1 | 548 * stlport/stl/_numpunct.h, src/numpunct.cpp: numpunct facet _M_truename [all...] |