/external/stlport/src/ |
D | monetary.cpp | 48 moneypunct<char, true>::moneypunct(size_t __refs) : locale::facet(__refs) in moneypunct() function in moneypunct 50 moneypunct<char, true>::~moneypunct() {} in ~moneypunct() 52 char moneypunct<char, true>::do_decimal_point() const {return ' ';} in do_decimal_point() 53 char moneypunct<char, true>::do_thousands_sep() const {return ' ';} in do_thousands_sep() 54 string moneypunct<char, true>::do_grouping() const { return _S_empty_string; } in do_grouping() 55 string moneypunct<char, true>::do_curr_symbol() const { return _S_empty_string; } in do_curr_symbol() 56 string moneypunct<char, true>::do_positive_sign() const { return _S_empty_string; } in do_positive_sign() 57 string moneypunct<char, true>::do_negative_sign() const { return _S_empty_string; } in do_negative_sign() 58 money_base::pattern moneypunct<char, true>::do_pos_format() const {return _M_pos_format;} in do_pos_format() 59 money_base::pattern moneypunct<char, true>::do_neg_format() const {return _M_neg_format;} in do_neg_format() [all …]
|
D | locale_impl.cpp | 421 this->insert(i2, moneypunct<char, false>::id); in insert_monetary_facets() 422 this->insert(i2, moneypunct<char, true>::id); in insert_monetary_facets() 424 this->insert(i2, moneypunct<wchar_t, false>::id); in insert_monetary_facets() 425 this->insert(i2, moneypunct<wchar_t, true>::id); in insert_monetary_facets() 501 this->insert(punct, moneypunct<char, false>::id); in insert_monetary_facets() 502 this->insert(ipunct, moneypunct<char, true>::id); in insert_monetary_facets() 504 if (wpunct) this->insert(wpunct, moneypunct<wchar_t, false>::id); in insert_monetary_facets() 505 if (wipunct) this->insert(wipunct, moneypunct<wchar_t, true>::id); in insert_monetary_facets() 635 new moneypunct<char, true>(1), in make_classic_locale() 636 new moneypunct<char, false>(1), in make_classic_locale() [all …]
|
D | locale.cpp | 322 impl->insert( i2, _STLP_STD::moneypunct<char, true>::id); in locale() 323 impl->insert( i2, _STLP_STD::moneypunct<char, false>::id); in locale() 327 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, true>::id); in locale() 328 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, false>::id); in locale()
|
D | facets_byname.cpp | 863 : moneypunct<char, true>(refs) { in moneypunct_byname() 907 : moneypunct<char, false>(refs) { in moneypunct_byname() 956 : moneypunct<wchar_t, true>(refs) { in moneypunct_byname() 1012 : moneypunct<wchar_t, false>(refs) { in moneypunct_byname()
|
/external/stlport/stlport/stl/ |
D | _monetary.h | 49 template <class _charT, _STLP_DFL_NON_TYPE_PARAM(bool, _International, false) > class moneypunct {}; 86 class _STLP_CLASS_DECLSPEC moneypunct<char, true> : public locale::facet, public money_base { 90 explicit moneypunct _STLP_PSPEC2(char, true) (size_t __refs = 0); 109 ~moneypunct _STLP_PSPEC2(char, true) (); 125 class _STLP_CLASS_DECLSPEC moneypunct<char, false> : public locale::facet, public money_base { 130 explicit moneypunct _STLP_PSPEC2(char, false) (size_t __refs = 0); 149 ~moneypunct _STLP_PSPEC2(char, false) (); 168 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, true> : public locale::facet, public money_base { 172 explicit moneypunct _STLP_PSPEC2(wchar_t, true) (size_t __refs = 0); 190 ~moneypunct _STLP_PSPEC2(wchar_t, true) (); [all …]
|
D | _monetary.c | 133 typedef moneypunct<char_type, false> _Punct; in __money_do_get() 134 typedef moneypunct<char_type, true> _Punct_intl; in __money_do_get() 322 typedef moneypunct<char_type, false> _Punct; in __money_do_put() 323 typedef moneypunct<char_type, true> _Punct_intl; in __money_do_put()
|
/external/stlport/test/unit/ |
D | money_facets_test.cpp | 74 CPPUNIT_ASSERT( (has_facet<moneypunct<char, true> >(loc)) ); in _money_put_get2() 75 moneypunct<char, true> const& intl_fmp = use_facet<moneypunct<char, true> >(loc); in _money_put_get2() 187 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) ); in _money_put_get2() 188 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc); in _money_put_get2() 292 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) ); in _money_put_X_bug() 293 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc); in _money_put_X_bug() 354 CPPUNIT_ASSERT( (has_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() [all …]
|
D | locale_test.cpp | 290 locale loc = loc1.combine<moneypunct<char, true> >(loc2); in combine() 291 loc = loc.combine<moneypunct<char, false> >(loc2); in combine()
|
/external/stlport/stlport/using/ |
D | locale | 57 using _STLP_NEW_IO_NAMESPACE::moneypunct;
|
/external/stlport/etc/ |
D | ChangeLog | 891 * test/unit/money_facets_test.cpp: Add validation that moneypunct 896 moneypunct by name facet build from "C" similar to locale::classic()
|
D | ChangeLog-5.1 | 4325 * test/unit/locale_test.cpp: some fixes in moneypunct test, related 5367 on the result of the moneypunct<_CharT, false>::decimal_point call as this
|