/ndk/sources/cxx-stl/stlport/src/ |
D | locale_impl.h | 35 _STLP_EXPORT_TEMPLATE_CLASS allocator<locale::facet*>; 39 …TLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::fac… 40 _STLP_EXPORT_TEMPLATE_CLASS _Vector_base<locale::facet*, allocator<locale::facet*> >; 47 …PLATE_CLASS __construct_checker<_STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 48 _STLP_EXPORT_TEMPLATE_CLASS _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> >; 53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >; 98 locale::facet* insert(locale::facet*, const locale::id& n); 112 vector<locale::facet*> facets_vec;
|
D | dll_main.cpp | 137 template class _STLP_CLASS_DECLSPEC allocator<locale::facet*>; 140 …lass _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::fac… 141 template class _STLP_CLASS_DECLSPEC _Vector_base<locale::facet*, allocator<locale::facet*> >; 148 … __construct_checker<_STLP_PRIV _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 149 template class _STLP_CLASS_DECLSPEC _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> … 154 template class _STLP_CLASS_DECLSPEC vector<locale::facet*, allocator<locale::facet*> >;
|
D | locale_impl.cpp | 36 locale::facet * _STLP_CALL _get_facet(locale::facet *f) in _get_facet() 43 void _STLP_CALL _release_facet(locale::facet *&f) in _release_facet() 126 locale::facet* _Locale_impl::insert(locale::facet *f, const locale::id& n) { in insert() 163 locale::facet* ct = 0; in insert_ctype_facets() 164 locale::facet* cvt = 0; in insert_ctype_facets() 166 locale::facet* wct = 0; in insert_ctype_facets() 167 locale::facet* wcvt = 0; in insert_ctype_facets() 247 locale::facet* punct = 0; in insert_numeric_facets() 249 locale::facet* wpunct = 0; in insert_numeric_facets() 305 locale::facet *get = 0; in insert_time_facets() [all …]
|
D | monetary.cpp | 48 moneypunct<char, true>::moneypunct(size_t __refs) : locale::facet(__refs) in moneypunct() 62 moneypunct<char, false>::moneypunct(size_t __refs) : locale::facet(__refs) in moneypunct() 78 moneypunct<wchar_t, true>::moneypunct(size_t __refs) : locale::facet(__refs) in moneypunct() 98 moneypunct<wchar_t, false>::moneypunct(size_t __refs) : locale::facet(__refs) in moneypunct()
|
D | locale.cpp | 43 locale::facet::~facet() {} in ~facet() 70 const char* name, const char* facet) { in _M_throw_on_creation_failure() argument 75 what += facet; in _M_throw_on_creation_failure() 88 what += facet; in _M_throw_on_creation_failure() 128 void locale::_M_insert(facet* f, locale::id& n) { in _M_insert() 378 locale::facet* locale::_M_get_facet(const locale::id& n) const { in _M_get_facet() 382 locale::facet* locale::_M_use_facet(const locale::id& n) const { in _M_use_facet() 383 locale::facet* f = (n._M_index < _M_impl->size() ? _M_impl->facets_vec[n._M_index] : 0); in _M_use_facet()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _locale.h | 80 class _STLP_CLASS_DECLSPEC facet : protected _Refcount_Base { 86 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {} 87 virtual ~facet(); 90 friend facet * _STLP_CALL _get_facet( facet * ); 91 friend void _STLP_CALL _release_facet( facet *& ); 94 facet(const facet& ) /* : _Refcount_Base(1) {} */; 95 void operator=(const facet&); 190 facet* _M_get_facet(const id&) const; 192 facet* _M_use_facet(const id&) const; 196 … const char* name, const char* facet); [all …]
|
D | _numpunct.h | 48 class _STLP_CLASS_DECLSPEC numpunct<char> : public locale::facet { 54 : locale::facet(__refs) {} in facet() function 77 class _STLP_CLASS_DECLSPEC numpunct<wchar_t> : public locale::facet { 83 : locale::facet(__refs) {} in facet() function
|
D | _collate.h | 43 class _STLP_CLASS_DECLSPEC collate<char> : public locale::facet { 48 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} in facet() function 79 class _STLP_CLASS_DECLSPEC collate<wchar_t> : public locale::facet { 84 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} in facet() function
|
D | _time_facets.h | 131 class time_get : public locale::facet, public time_base, public _STLP_PRIV time_init<_Ch> { 136 explicit time_get(size_t __refs = 0) : locale::facet(__refs) in facet() function 160 : locale::facet(__refs), _STLP_PRIV time_init<_Ch>(__name) in time_get() 248 class time_put : public locale::facet, public time_base, public _STLP_PRIV time_init<_Ch> { 253 explicit time_put(size_t __refs = 0) : locale::facet(__refs) in facet() function 268 : locale::facet(__refs), _STLP_PRIV time_init<_Ch>(__name) in time_put()
|
D | _monetary.h | 54 class money_get : public locale::facet { 60 explicit money_get(size_t __refs = 0) : locale::facet(__refs) {} in facet() function 86 class _STLP_CLASS_DECLSPEC moneypunct<char, true> : public locale::facet, public money_base { 125 class _STLP_CLASS_DECLSPEC moneypunct<char, false> : public locale::facet, public money_base { 168 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, true> : public locale::facet, public money_base { 207 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, false> : public locale::facet, public money_base { 388 class money_put : public locale::facet { 394 explicit money_put(size_t __refs = 0) : locale::facet(__refs) {} in facet() function
|
D | _codecvt.h | 46 class codecvt : public locale::facet, public codecvt_base { 60 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {} 174 : public locale::facet, public codecvt_base { 180 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {} in facet() function 271 : public locale::facet, public codecvt_base { 277 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {} in facet() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.facet/ |
D | facet.pass.cpp | 27 : public std::locale::facet 31 : std::locale::facet(refs) in my_facet()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/ |
D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::num_put<char> >::value), ""); in main() 27 static_assert((std::is_base_of<std::locale::facet, std::num_put<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/ |
D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::num_get<char> >::value), ""); in main() 27 static_assert((std::is_base_of<std::locale::facet, std::num_get<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.put/ |
D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::time_put<char> >::value), ""); in main() 27 static_assert((std::is_base_of<std::locale::facet, std::time_put<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.messages/locale.messages/ |
D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::messages<char> >::value), ""); in main() 28 static_assert((std::is_base_of<std::locale::facet, std::messages<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.time/locale.time.get/ |
D | types.pass.cpp | 33 static_assert((std::is_base_of<std::locale::facet, std::time_get<char> >::value), ""); in main() 34 static_assert((std::is_base_of<std::locale::facet, std::time_get<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/ |
D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::money_put<char> >::value), ""); in main() 27 static_assert((std::is_base_of<std::locale::facet, std::money_put<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/ |
D | types.pass.cpp | 26 static_assert((std::is_base_of<std::locale::facet, std::money_get<char> >::value), ""); in main() 27 static_assert((std::is_base_of<std::locale::facet, std::money_get<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/ |
D | types.pass.cpp | 35 static_assert((std::is_base_of<std::locale::facet, std::moneypunct<char> >::value), ""); in main() 36 static_assert((std::is_base_of<std::locale::facet, std::moneypunct<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/ |
D | types.pass.cpp | 37 static_assert((std::is_base_of<std::locale::facet, std::collate<char> >::value), ""); in main() 47 static_assert((std::is_base_of<std::locale::facet, std::collate<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/ |
D | types.pass.cpp | 36 static_assert((std::is_base_of<std::locale::facet, std::numpunct<char> >::value), ""); in main() 46 static_assert((std::is_base_of<std::locale::facet, std::numpunct<wchar_t> >::value), ""); in main()
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | locale | 28 // _lib.category.ctype_ and _lib.facet.ctype.special_, ctype: 36 // _lib.category.numeric_ and _lib.facet.numpunct_, numeric:
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.global.templates/ |
D | has_facet.pass.cpp | 18 : public std::locale::facet
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | __locale | 52 class _LIBCPP_TYPE_VIS facet; 99 void __install_ctor(const locale&, facet*, long); 102 const facet* use_facet(id&) const; 108 class _LIBCPP_TYPE_VIS locale::facet 113 explicit facet(size_t __refs = 0) 116 virtual ~facet(); 118 // facet(const facet&) = delete; // effectively done in __shared_count 119 // void operator=(const facet&) = delete; 156 throw runtime_error("locale::combine: locale missing facet"); 181 : public locale::facet [all …]
|