Searched refs:ctype_byname (Results 1 – 6 of 6) sorted by relevance
/external/stlport/stlport/stl/ |
D | _ctype.h | 59 template <class charT> class ctype_byname {}; 147 class _STLP_CLASS_DECLSPEC ctype_byname<char>: public ctype<char> { 150 explicit ctype_byname(const char*, size_t = 0); 151 ~ctype_byname(); 160 ctype_byname(_Locale_ctype* __ctype) in ctype_byname() function 167 typedef ctype_byname<char> _Self; 168 ctype_byname(_Self const&); 240 class _STLP_CLASS_DECLSPEC ctype_byname<wchar_t>: public ctype<wchar_t> { 243 explicit ctype_byname(const char* __name, size_t __refs = 0); 246 ~ctype_byname(); [all …]
|
D | _iosfwd.h | 99 template <class _CharT> class ctype_byname; variable 104 _STLP_TEMPLATE_NULL class ctype_byname<char>; variable 110 _STLP_TEMPLATE_NULL class ctype_byname<wchar_t>; variable
|
/external/stlport/src/ |
D | facets_byname.cpp | 41 ctype_byname<char>::ctype_byname(const char* name, size_t refs) in ctype_byname() function in ctype_byname 55 void ctype_byname<char>::_M_init() { in _M_init() 66 ctype_byname<char>::~ctype_byname() in ~ctype_byname() 69 char ctype_byname<char>::do_toupper(char c) const in do_toupper() 72 char ctype_byname<char>::do_tolower(char c) const in do_tolower() 76 ctype_byname<char>::do_toupper(char* first, const char* last) const { in do_toupper() 83 ctype_byname<char>::do_tolower(char* first, const char* last) const { in do_tolower() 112 ctype_byname<wchar_t>::ctype_byname(const char* name, size_t refs) in ctype_byname() function in ctype_byname 124 ctype_byname<wchar_t>::~ctype_byname() in ~ctype_byname() 127 bool ctype_byname<wchar_t>::do_is(ctype_base::mask m, wchar_t c) const in do_is() [all …]
|
D | locale_impl.cpp | 179 ct = new ctype_byname<char>(__lct); in insert_ctype_facets() 197 wct = new ctype_byname<wchar_t>(__lwct); in insert_ctype_facets()
|
/external/stlport/test/unit/ |
D | ctype_facets_test.cpp | 347 locale tmp(locale::classic(), new ctype_byname<char>(tested_locales[i])); in test_supported_locale() 349 locale tmp0(tmp, new ctype_byname<wchar_t>(tested_locales[i])); in test_supported_locale() 377 locale loc(locale::classic(), new ctype_byname<char>(static_cast<char const*>(0))); in ctype_by_name() 389 locale loc(locale::classic(), new ctype_byname<char>("yasli_language")); in ctype_by_name() 427 locale loc(locale::classic(), new ctype_byname<char>("fr_FR")); in ctype_by_name() 440 locale loc(locale::classic(), new ctype_byname<char>("C")); in ctype_by_name() 473 locale loc(locale::classic(), new ctype_byname<wchar_t>(static_cast<char const*>(0))); in ctype_by_name() 484 locale loc(locale::classic(), new ctype_byname<wchar_t>("yasli_language")); in ctype_by_name()
|
/external/stlport/stlport/using/ |
D | locale | 31 using _STLP_NEW_IO_NAMESPACE::ctype_byname;
|