HomeSort by relevance Sort by last modified time
    Searched refs:moneypunct (Results 1 - 25 of 28) sorted by null

1 2

  /external/stlport/src/
monetary.cpp 45 // moneypunct<>
48 moneypunct<char, true>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
50 moneypunct<char, true>::~moneypunct() {}
52 char moneypunct<char, true>::do_decimal_point() const {return ' ';}
53 char moneypunct<char, true>::do_thousands_sep() const {return ' ';}
54 string moneypunct<char, true>::do_grouping() const { return _S_empty_string; }
55 string moneypunct<char, true>::do_curr_symbol() const { return _S_empty_string; }
56 string moneypunct<char, true>::do_positive_sign() const { return _S_empty_string;
62 moneypunct<char, false>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
78 moneypunct<wchar_t, true>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
98 moneypunct<wchar_t, false>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
    [all...]
locale_impl.cpp 421 this->insert(i2, moneypunct<char, false>::id);
422 this->insert(i2, moneypunct<char, true>::id);
424 this->insert(i2, moneypunct<wchar_t, false>::id);
425 this->insert(i2, moneypunct<wchar_t, true>::id);
501 this->insert(punct, moneypunct<char, false>::id);
502 this->insert(ipunct, moneypunct<char, true>::id);
504 if (wpunct) this->insert(wpunct, moneypunct<wchar_t, false>::id);
505 if (wipunct) this->insert(wipunct, moneypunct<wchar_t, true>::id);
635 new moneypunct<char, true>(1),
636 new moneypunct<char, false>(1)
    [all...]
locale.cpp 322 impl->insert( i2, _STLP_STD::moneypunct<char, true>::id);
323 impl->insert( i2, _STLP_STD::moneypunct<char, false>::id);
327 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, true>::id);
328 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, false>::id);
  /ndk/sources/cxx-stl/stlport/src/
monetary.cpp 45 // moneypunct<>
48 moneypunct<char, true>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
50 moneypunct<char, true>::~moneypunct() {}
52 char moneypunct<char, true>::do_decimal_point() const {return ' ';}
53 char moneypunct<char, true>::do_thousands_sep() const {return ' ';}
54 string moneypunct<char, true>::do_grouping() const { return _S_empty_string; }
55 string moneypunct<char, true>::do_curr_symbol() const { return _S_empty_string; }
56 string moneypunct<char, true>::do_positive_sign() const { return _S_empty_string;
62 moneypunct<char, false>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
78 moneypunct<wchar_t, true>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
98 moneypunct<wchar_t, false>::moneypunct(size_t __refs) : locale::facet(__refs) function in class:moneypunct
    [all...]
locale_impl.cpp 421 this->insert(i2, moneypunct<char, false>::id);
422 this->insert(i2, moneypunct<char, true>::id);
424 this->insert(i2, moneypunct<wchar_t, false>::id);
425 this->insert(i2, moneypunct<wchar_t, true>::id);
501 this->insert(punct, moneypunct<char, false>::id);
502 this->insert(ipunct, moneypunct<char, true>::id);
504 if (wpunct) this->insert(wpunct, moneypunct<wchar_t, false>::id);
505 if (wipunct) this->insert(wipunct, moneypunct<wchar_t, true>::id);
635 new moneypunct<char, true>(1),
636 new moneypunct<char, false>(1)
    [all...]
locale.cpp 322 impl->insert( i2, _STLP_STD::moneypunct<char, true>::id);
323 impl->insert( i2, _STLP_STD::moneypunct<char, false>::id);
327 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, true>::id);
328 impl->insert( i2, _STLP_STD::moneypunct<wchar_t, false>::id);
  /external/stlport/stlport/stl/
_monetary.h 48 // moneypunct facets: forward declaration
49 template <class _charT, _STLP_DFL_NON_TYPE_PARAM(bool, _International, false) > class moneypunct {}; class
83 // moneypunct facets: definition of specializations
86 class _STLP_CLASS_DECLSPEC moneypunct<char, true> : public locale::facet, public money_base { class in inherits:locale::facet,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 { class in inherits:locale::facet,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 class in inherits:locale::facet,money_base
207 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, false> : public locale::facet, public money_base { class in inherits:locale::facet,money_base
    [all...]
_monetary.c 133 typedef moneypunct<char_type, false> _Punct;
134 typedef moneypunct<char_type, true> _Punct_intl;
322 typedef moneypunct<char_type, false> _Punct;
323 typedef moneypunct<char_type, true> _Punct_intl;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 48 // moneypunct facets: forward declaration
49 template <class _charT, _STLP_DFL_NON_TYPE_PARAM(bool, _International, false) > class moneypunct {}; class
83 // moneypunct facets: definition of specializations
86 class _STLP_CLASS_DECLSPEC moneypunct<char, true> : public locale::facet, public money_base { class in inherits:locale::facet,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 { class in inherits:locale::facet,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 class in inherits:locale::facet,money_base
207 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, false> : public locale::facet, public money_base { class in inherits:locale::facet,money_base
    [all...]
_monetary.c 133 typedef moneypunct<char_type, false> _Punct;
134 typedef moneypunct<char_type, true> _Punct_intl;
322 typedef moneypunct<char_type, false> _Punct;
323 typedef moneypunct<char_type, true> _Punct_intl;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 48 // moneypunct facets: forward declaration
49 template <class _charT, _STLP_DFL_NON_TYPE_PARAM(bool, _International, false) > class moneypunct {}; class
83 // moneypunct facets: definition of specializations
86 class _STLP_CLASS_DECLSPEC moneypunct<char, true> : public locale::facet, public money_base { class in inherits:locale::facet,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 { class in inherits:locale::facet,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 class in inherits:locale::facet,money_base
207 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, false> : public locale::facet, public money_base { class in inherits:locale::facet,money_base
    [all...]
_monetary.c 133 typedef moneypunct<char_type, false> _Punct;
134 typedef moneypunct<char_type, true> _Punct_intl;
322 typedef moneypunct<char_type, false> _Punct;
323 typedef moneypunct<char_type, true> _Punct_intl;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 48 // moneypunct facets: forward declaration
49 template <class _charT, _STLP_DFL_NON_TYPE_PARAM(bool, _International, false) > class moneypunct {}; class
83 // moneypunct facets: definition of specializations
86 class _STLP_CLASS_DECLSPEC moneypunct<char, true> : public locale::facet, public money_base { class in inherits:locale::facet,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 { class in inherits:locale::facet,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 class in inherits:locale::facet,money_base
207 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, false> : public locale::facet, public money_base { class in inherits:locale::facet,money_base
    [all...]
  /external/stlport/test/unit/
money_facets_test.cpp 74 CPPUNIT_ASSERT( (has_facet<moneypunct<char, true> >(loc)) );
75 moneypunct<char, true> const& intl_fmp = use_facet<moneypunct<char, true> >(loc);
187 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) );
188 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
292 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) );
293 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
354 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) )
    [all...]
locale_test.cpp 290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
  /ndk/tests/device/test-gnustl-full/unit/
money_facets_test.cpp 74 CPPUNIT_ASSERT( (has_facet<moneypunct<char, true> >(loc)) );
75 moneypunct<char, true> const& intl_fmp = use_facet<moneypunct<char, true> >(loc);
187 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) );
188 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
292 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) );
293 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
354 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) )
    [all...]
locale_test.cpp 290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
  /ndk/tests/device/test-stlport/unit/
money_facets_test.cpp 74 CPPUNIT_ASSERT( (has_facet<moneypunct<char, true> >(loc)) );
75 moneypunct<char, true> const& intl_fmp = use_facet<moneypunct<char, true> >(loc);
187 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) );
188 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
292 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) );
293 moneypunct<char, false> const& dom_fmp = use_facet<moneypunct<char, false> >(loc);
354 CPPUNIT_ASSERT( (has_facet<moneypunct<char, false> >(loc)) )
    [all...]
locale_test.cpp 290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
locale_facets_nonio.h 823 * moneypunct::pos_format() and moneypunct::neg_format() for details of how
919 class moneypunct : public locale::facet, public money_base class in inherits:locale::facet,money_base
948 moneypunct(size_t __refs = 0) : facet(__refs), _M_data(NULL) function in class:moneypunct
960 moneypunct(__cache_type* __cache, size_t __refs = 0) function in class:moneypunct
975 moneypunct(__c_locale __cloc, const char* __s, size_t __refs = 0) function in class:moneypunct
    [all...]
localefwd.h 170 class moneypunct;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_facets_nonio.h 823 * moneypunct::pos_format() and moneypunct::neg_format() for details of how
919 class moneypunct : public locale::facet, public money_base class in inherits:locale::facet,money_base
948 moneypunct(size_t __refs = 0) : facet(__refs), _M_data(NULL) function in class:moneypunct
960 moneypunct(__cache_type* __cache, size_t __refs = 0) function in class:moneypunct
975 moneypunct(__c_locale __cloc, const char* __s, size_t __refs = 0) function in class:moneypunct
    [all...]
localefwd.h 170 class moneypunct;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
locale_facets_nonio.h 823 * moneypunct::pos_format() and moneypunct::neg_format() for details of how
919 class moneypunct : public locale::facet, public money_base class in inherits:locale::facet,money_base
948 moneypunct(size_t __refs = 0) : facet(__refs), _M_data(NULL) function in class:moneypunct
960 moneypunct(__cache_type* __cache, size_t __refs = 0) function in class:moneypunct
975 moneypunct(__c_locale __cloc, const char* __s, size_t __refs = 0) function in class:moneypunct
    [all...]
localefwd.h 170 class moneypunct;

Completed in 2120 milliseconds

1 2