HELLO·Android
系统源代码
IT资讯
技术文章
我的收藏
注册
登录
-
我收藏的文章
创建代码块
我的代码块
我的账号
Marshmallow
|
6.0.1_r16
下载
查看原文件
收藏
根目录
external
libcxx
src
locale.cpp
//===------------------------- locale.cpp ---------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #define _LIBCPP_EXTERN_TEMPLATE(...) extern template __VA_ARGS__; // On Solaris, we need to define something to make the C99 parts of localeconv // visible. #ifdef __sun__ #define _LCONV_C99 #endif #include "string" #include "locale" #include "codecvt" #include "vector" #include "algorithm" #include "typeinfo" #ifndef _LIBCPP_NO_EXCEPTIONS # include "type_traits" #endif #include "clocale" #include "cstring" #include "cwctype" #include "__sso_allocator" #if defined(_LIBCPP_MSVCRT) || defined(__MINGW32__) #include
#elif !defined(__ANDROID__) #include
#endif #include
#include
// On Linux, wint_t and wchar_t have different signed-ness, and this causes // lots of noise in the build log, but no bugs that I know of. #if defined(__clang__) #pragma clang diagnostic ignored "-Wsign-conversion" #endif _LIBCPP_BEGIN_NAMESPACE_STD #ifdef __cloc_defined locale_t __cloc() { // In theory this could create a race condition. In practice // the race condition is non-fatal since it will just create // a little resource leak. Better approach would be appreciated. static locale_t result = newlocale(LC_ALL_MASK, "C", 0); return result; } #endif // __cloc_defined namespace { struct release { void operator()(locale::facet* p) {p->__release_shared();} }; template
inline T& make(A0 a0) { static typename aligned_storage
::type buf; ::new (&buf) T(a0); return *reinterpret_cast
(&buf); } template
inline T& make(A0 a0, A1 a1) { static typename aligned_storage
::type buf; ::new (&buf) T(a0, a1); return *reinterpret_cast
(&buf); } template
inline T& make(A0 a0, A1 a1, A2 a2) { static typename aligned_storage
::type buf; ::new (&buf) T(a0, a1, a2); return *reinterpret_cast
(&buf); } template
inline _LIBCPP_CONSTEXPR size_t countof(const T (&)[N]) { return N; } template
inline _LIBCPP_CONSTEXPR size_t countof(const T * const begin, const T * const end) { return static_cast
(end - begin); } } #if defined(_AIX) // Set priority to INT_MIN + 256 + 150 # pragma priority ( -2147483242 ) #endif const locale::category locale::none; const locale::category locale::collate; const locale::category locale::ctype; const locale::category locale::monetary; const locale::category locale::numeric; const locale::category locale::time; const locale::category locale::messages; const locale::category locale::all; #if defined(__clang__) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wpadded" #endif class _LIBCPP_HIDDEN locale::__imp : public facet { enum {N = 28}; #if defined(_LIBCPP_MSVC) // FIXME: MSVC doesn't support aligned parameters by value. // I can't get the __sso_allocator to work here // for MSVC I think for this reason. vector
facets_; #else vector
> facets_; #endif string name_; public: explicit __imp(size_t refs = 0); explicit __imp(const string& name, size_t refs = 0); __imp(const __imp&); __imp(const __imp&, const string&, locale::category c); __imp(const __imp& other, const __imp& one, locale::category c); __imp(const __imp&, facet* f, long id); ~__imp(); const string& name() const {return name_;} bool has_facet(long id) const {return static_cast
(id) < facets_.size() && facets_[static_cast
(id)];} const locale::facet* use_facet(long id) const; static const locale& make_classic(); static locale& make_global(); private: void install(facet* f, long id); template
void install(F* f) {install(f, f->id.__get());} template
void install_from(const __imp& other); }; #if defined(__clang__) #pragma clang diagnostic pop #endif locale::__imp::__imp(size_t refs) : facet(refs), facets_(N), name_("C") { facets_.clear(); install(&make<_VSTD::collate
>(1u)); install(&make<_VSTD::collate
>(1u)); install(&make<_VSTD::ctype
>(nullptr, false, 1u)); install(&make<_VSTD::ctype
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make
>(1u)); install(&make<_VSTD::messages
>(1u)); install(&make<_VSTD::messages
>(1u)); } locale::__imp::__imp(const string& name, size_t refs) : facet(refs), facets_(N), name_(name) { #ifndef _LIBCPP_NO_EXCEPTIONS try { #endif // _LIBCPP_NO_EXCEPTIONS facets_ = locale::classic().__locale_->facets_; for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__add_shared(); install(new collate_byname
(name_)); install(new collate_byname
(name_)); install(new ctype_byname
(name_)); install(new ctype_byname
(name_)); install(new codecvt_byname
(name_)); install(new codecvt_byname
(name_)); install(new codecvt_byname
(name_)); install(new codecvt_byname
(name_)); install(new numpunct_byname
(name_)); install(new numpunct_byname
(name_)); install(new moneypunct_byname
(name_)); install(new moneypunct_byname
(name_)); install(new moneypunct_byname
(name_)); install(new moneypunct_byname
(name_)); install(new time_get_byname
(name_)); install(new time_get_byname
(name_)); install(new time_put_byname
(name_)); install(new time_put_byname
(name_)); install(new messages_byname
(name_)); install(new messages_byname
(name_)); #ifndef _LIBCPP_NO_EXCEPTIONS } catch (...) { for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__release_shared(); throw; } #endif // _LIBCPP_NO_EXCEPTIONS } // NOTE avoid the `base class should be explicitly initialized in the // copy constructor` warning emitted by GCC #if defined(__clang__) || _GNUC_VER >= 406 #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wextra" #endif locale::__imp::__imp(const __imp& other) : facets_(max
(N, other.facets_.size())), name_(other.name_) { facets_ = other.facets_; for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__add_shared(); } #if defined(__clang__) || _GNUC_VER >= 406 #pragma GCC diagnostic pop #endif locale::__imp::__imp(const __imp& other, const string& name, locale::category c) : facets_(N), name_("*") { facets_ = other.facets_; for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__add_shared(); #ifndef _LIBCPP_NO_EXCEPTIONS try { #endif // _LIBCPP_NO_EXCEPTIONS if (c & locale::collate) { install(new collate_byname
(name)); install(new collate_byname
(name)); } if (c & locale::ctype) { install(new ctype_byname
(name)); install(new ctype_byname
(name)); install(new codecvt_byname
(name)); install(new codecvt_byname
(name)); install(new codecvt_byname
(name)); install(new codecvt_byname
(name)); } if (c & locale::monetary) { install(new moneypunct_byname
(name)); install(new moneypunct_byname
(name)); install(new moneypunct_byname
(name)); install(new moneypunct_byname
(name)); } if (c & locale::numeric) { install(new numpunct_byname
(name)); install(new numpunct_byname
(name)); } if (c & locale::time) { install(new time_get_byname
(name)); install(new time_get_byname
(name)); install(new time_put_byname
(name)); install(new time_put_byname
(name)); } if (c & locale::messages) { install(new messages_byname
(name)); install(new messages_byname
(name)); } #ifndef _LIBCPP_NO_EXCEPTIONS } catch (...) { for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__release_shared(); throw; } #endif // _LIBCPP_NO_EXCEPTIONS } template
inline void locale::__imp::install_from(const locale::__imp& one) { long id = F::id.__get(); install(const_cast
(static_cast
(one.use_facet(id))), id); } locale::__imp::__imp(const __imp& other, const __imp& one, locale::category c) : facets_(N), name_("*") { facets_ = other.facets_; for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__add_shared(); #ifndef _LIBCPP_NO_EXCEPTIONS try { #endif // _LIBCPP_NO_EXCEPTIONS if (c & locale::collate) { install_from<_VSTD::collate
>(one); install_from<_VSTD::collate
>(one); } if (c & locale::ctype) { install_from<_VSTD::ctype
>(one); install_from<_VSTD::ctype
>(one); install_from<_VSTD::codecvt
>(one); install_from<_VSTD::codecvt
>(one); install_from<_VSTD::codecvt
>(one); install_from<_VSTD::codecvt
>(one); } if (c & locale::monetary) { install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); } if (c & locale::numeric) { install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); } if (c & locale::time) { install_from
>(one); install_from
>(one); install_from
>(one); install_from
>(one); } if (c & locale::messages) { install_from<_VSTD::messages
>(one); install_from<_VSTD::messages
>(one); } #ifndef _LIBCPP_NO_EXCEPTIONS } catch (...) { for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__release_shared(); throw; } #endif // _LIBCPP_NO_EXCEPTIONS } locale::__imp::__imp(const __imp& other, facet* f, long id) : facets_(max
(N, other.facets_.size()+1)), name_("*") { f->__add_shared(); unique_ptr
hold(f); facets_ = other.facets_; for (unsigned i = 0; i < other.facets_.size(); ++i) if (facets_[i]) facets_[i]->__add_shared(); install(hold.get(), id); } locale::__imp::~__imp() { for (unsigned i = 0; i < facets_.size(); ++i) if (facets_[i]) facets_[i]->__release_shared(); } void locale::__imp::install(facet* f, long id) { f->__add_shared(); unique_ptr
hold(f); if (static_cast
(id) >= facets_.size()) facets_.resize(static_cast
(id+1)); if (facets_[static_cast
(id)]) facets_[static_cast
(id)]->__release_shared(); facets_[static_cast
(id)] = hold.release(); } const locale::facet* locale::__imp::use_facet(long id) const { #ifndef _LIBCPP_NO_EXCEPTIONS if (!has_facet(id)) throw bad_cast(); #endif // _LIBCPP_NO_EXCEPTIONS return facets_[static_cast
(id)]; } // locale const locale& locale::__imp::make_classic() { // only one thread can get in here and it only gets in once static aligned_storage
::type buf; locale* c = reinterpret_cast
(&buf); c->__locale_ = &make<__imp>(1u); return *c; } const locale& locale::classic() { static const locale& c = __imp::make_classic(); return c; } locale& locale::__imp::make_global() { // only one thread can get in here and it only gets in once static aligned_storage
::type buf; ::new (&buf) locale(locale::classic()); return *reinterpret_cast
(&buf); } locale& locale::__global() { static locale& g = __imp::make_global(); return g; } locale::locale() _NOEXCEPT : __locale_(__global().__locale_) { __locale_->__add_shared(); } locale::locale(const locale& l) _NOEXCEPT : __locale_(l.__locale_) { __locale_->__add_shared(); } locale::~locale() { __locale_->__release_shared(); } const locale& locale::operator=(const locale& other) _NOEXCEPT { other.__locale_->__add_shared(); __locale_->__release_shared(); __locale_ = other.__locale_; return *this; } locale::locale(const char* name) #ifndef _LIBCPP_NO_EXCEPTIONS : __locale_(name ? new __imp(name) : throw runtime_error("locale constructed with null")) #else // _LIBCPP_NO_EXCEPTIONS : __locale_(new __imp(name)) #endif { __locale_->__add_shared(); } locale::locale(const string& name) : __locale_(new __imp(name)) { __locale_->__add_shared(); } locale::locale(const locale& other, const char* name, category c) #ifndef _LIBCPP_NO_EXCEPTIONS : __locale_(name ? new __imp(*other.__locale_, name, c) : throw runtime_error("locale constructed with null")) #else // _LIBCPP_NO_EXCEPTIONS : __locale_(new __imp(*other.__locale_, name, c)) #endif { __locale_->__add_shared(); } locale::locale(const locale& other, const string& name, category c) : __locale_(new __imp(*other.__locale_, name, c)) { __locale_->__add_shared(); } locale::locale(const locale& other, const locale& one, category c) : __locale_(new __imp(*other.__locale_, *one.__locale_, c)) { __locale_->__add_shared(); } string locale::name() const { return __locale_->name(); } void locale::__install_ctor(const locale& other, facet* f, long id) { if (f) __locale_ = new __imp(*other.__locale_, f, id); else __locale_ = other.__locale_; __locale_->__add_shared(); } locale locale::global(const locale& loc) { locale& g = __global(); locale r = g; g = loc; if (g.name() != "*") setlocale(LC_ALL, g.name().c_str()); return r; } bool locale::has_facet(id& x) const { return __locale_->has_facet(x.__get()); } const locale::facet* locale::use_facet(id& x) const { return __locale_->use_facet(x.__get()); } bool locale::operator==(const locale& y) const { return (__locale_ == y.__locale_) || (__locale_->name() != "*" && __locale_->name() == y.__locale_->name()); } // locale::facet locale::facet::~facet() { } void locale::facet::__on_zero_shared() _NOEXCEPT { delete this; } // locale::id int32_t locale::id::__next_id = 0; namespace { class __fake_bind { locale::id* id_; void (locale::id::* pmf_)(); public: __fake_bind(void (locale::id::* pmf)(), locale::id* id) : id_(id), pmf_(pmf) {} void operator()() const { (id_->*pmf_)(); } }; } long locale::id::__get() { call_once(__flag_, __fake_bind(&locale::id::__init, this)); return __id_ - 1; } void locale::id::__init() { __id_ = __sync_add_and_fetch(&__next_id, 1); } // template <> class collate_byname
collate_byname
::collate_byname(const char* n, size_t refs) : collate
(refs), __l(newlocale(LC_ALL_MASK, n, 0)) { #ifndef _LIBCPP_NO_EXCEPTIONS if (__l == 0) throw runtime_error("collate_byname
::collate_byname" " failed to construct for " + string(n)); #endif // _LIBCPP_NO_EXCEPTIONS } collate_byname
::collate_byname(const string& name, size_t refs) : collate
(refs), __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) { #ifndef _LIBCPP_NO_EXCEPTIONS if (__l == 0) throw runtime_error("collate_byname
::collate_byname" " failed to construct for " + name); #endif // _LIBCPP_NO_EXCEPTIONS } collate_byname
::~collate_byname() { freelocale(__l); } int collate_byname
::do_compare(const char_type* __lo1, const char_type* __hi1, const char_type* __lo2, const char_type* __hi2) const { string_type lhs(__lo1, __hi1); string_type rhs(__lo2, __hi2); int r = strcoll_l(lhs.c_str(), rhs.c_str(), __l); if (r < 0) return -1; if (r > 0) return 1; return r; } collate_byname
::string_type collate_byname
::do_transform(const char_type* lo, const char_type* hi) const { const string_type in(lo, hi); string_type out(strxfrm_l(0, in.c_str(), 0, __l), char()); strxfrm_l(const_cast
(out.c_str()), in.c_str(), out.size()+1, __l); return out; } // template <> class collate_byname
collate_byname
::collate_byname(const char* n, size_t refs) : collate
(refs), __l(newlocale(LC_ALL_MASK, n, 0)) { #ifndef _LIBCPP_NO_EXCEPTIONS if (__l == 0) throw runtime_error("collate_byname
::collate_byname(size_t refs)" " failed to construct for " + string(n)); #endif // _LIBCPP_NO_EXCEPTIONS } collate_byname
::collate_byname(const string& name, size_t refs) : collate
(refs), __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) { #ifndef _LIBCPP_NO_EXCEPTIONS if (__l == 0) throw runtime_error("collate_byname
::collate_byname(size_t refs)" " failed to construct for " + name); #endif // _LIBCPP_NO_EXCEPTIONS } collate_byname
::~collate_byname() { freelocale(__l); } int collate_byname
::do_compare(const char_type* __lo1, const char_type* __hi1, const char_type* __lo2, const char_type* __hi2) const { string_type lhs(__lo1, __hi1); string_type rhs(__lo2, __hi2); int r = wcscoll_l(lhs.c_str(), rhs.c_str(), __l); if (r < 0) return -1; if (r > 0) return 1; return r; } collate_byname
::string_type collate_byname
::do_transform(const char_type* lo, const char_type* hi) const { const string_type in(lo, hi); string_type out(wcsxfrm_l(0, in.c_str(), 0, __l), wchar_t()); wcsxfrm_l(const_cast
(out.c_str()), in.c_str(), out.size()+1, __l); return out; } // template <> class ctype
; const ctype_base::mask ctype_base::space; const ctype_base::mask ctype_base::print; const ctype_base::mask ctype_base::cntrl; const ctype_base::mask ctype_base::upper; const ctype_base::mask ctype_base::lower; const ctype_base::mask ctype_base::alpha; const ctype_base::mask ctype_base::digit; const ctype_base::mask ctype_base::punct; const ctype_base::mask ctype_base::xdigit; const ctype_base::mask ctype_base::blank; const ctype_base::mask ctype_base::alnum; const ctype_base::mask ctype_base::graph; locale::id ctype
::id; ctype
::~ctype() { } bool ctype
::do_is(mask m, char_type c) const { return isascii(c) ? (ctype
::classic_table()[c] & m) != 0 : false; } const wchar_t* ctype
::do_is(const char_type* low, const char_type* high, mask* vec) const { for (; low != high; ++low, ++vec) *vec = static_cast
(isascii(*low) ? ctype
::classic_table()[*low] : 0); return low; } const wchar_t* ctype
::do_scan_is(mask m, const char_type* low, const char_type* high) const { for (; low != high; ++low) if (isascii(*low) && (ctype
::classic_table()[*low] & m)) break; return low; } const wchar_t* ctype
::do_scan_not(mask m, const char_type* low, const char_type* high) const { for (; low != high; ++low) if (!(isascii(*low) && (ctype
::classic_table()[*low] & m))) break; return low; } wchar_t ctype
::do_toupper(char_type c) const { #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE return isascii(c) ? _DefaultRuneLocale.__mapupper[c] : c; #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) || defined(__NetBSD__) return isascii(c) ? ctype
::__classic_upper_table()[c] : c; #else return (isascii(c) && iswlower_l(c, __cloc())) ? c-L'a'+L'A' : c; #endif } const wchar_t* ctype
::do_toupper(char_type* low, const char_type* high) const { for (; low != high; ++low) #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE *low = isascii(*low) ? _DefaultRuneLocale.__mapupper[*low] : *low; #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) || defined(__NetBSD__) *low = isascii(*low) ? ctype
::__classic_upper_table()[*low] : *low; #else *low = (isascii(*low) && islower_l(*low, __cloc())) ? (*low-L'a'+L'A') : *low; #endif return low; } wchar_t ctype
::do_tolower(char_type c) const { #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE return isascii(c) ? _DefaultRuneLocale.__maplower[c] : c; #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) || defined(__NetBSD__) return isascii(c) ? ctype
::__classic_lower_table()[c] : c; #else return (isascii(c) && isupper_l(c, __cloc())) ? c-L'A'+'a' : c; #endif } const wchar_t* ctype
::do_tolower(char_type* low, const char_type* high) const { for (; low != high; ++low) #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE *low = isascii(*low) ? _DefaultRuneLocale.__maplower[*low] : *low; #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) || defined(__NetBSD__) *low = isascii(*low) ? ctype
::__classic_lower_table()[*low] : *low; #else *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-L'A'+L'a' : *low; #endif return low; } wchar_t ctype
::do_widen(char c) const { return c; } const char* ctype
::do_widen(const char* low, const char* high, char_type* dest) const { for (; low != high; ++low, ++dest) *dest = *low; return low; } char ctype
::do_narrow(char_type c, char dfault) const { if (isascii(c)) return static_cast
(c); return dfault; } const wchar_t* ctype
::do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) const { for (; low != high; ++low, ++dest) if (isascii(*low)) *dest = static_cast
(*low); else *dest = dfault; return low; } // template <> class ctype
; locale::id ctype
::id; ctype
::ctype(const mask* tab, bool del, size_t refs) : locale::facet(refs), __tab_(tab), __del_(del) { if (__tab_ == 0) __tab_ = classic_table(); } ctype
::~ctype() { if (__tab_ && __del_) delete [] __tab_; } char ctype
::do_toupper(char_type c) const { #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE return isascii(c) ? static_cast
(_DefaultRuneLocale.__mapupper[static_cast
(c)]) : c; #elif defined(__NetBSD__) return static_cast
(__classic_upper_table()[static_cast
(c)]); #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) return isascii(c) ? static_cast
(__classic_upper_table()[static_cast
(c)]) : c; #else return (isascii(c) && islower_l(c, __cloc())) ? c-'a'+'A' : c; #endif } const char* ctype
::do_toupper(char_type* low, const char_type* high) const { for (; low != high; ++low) #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE *low = isascii(*low) ? static_cast
(_DefaultRuneLocale.__mapupper[static_cast
(*low)]) : *low; #elif defined(__NetBSD__) *low = static_cast
(__classic_upper_table()[static_cast
(*low)]); #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) *low = isascii(*low) ? static_cast
(__classic_upper_table()[static_cast
(*low)]) : *low; #else *low = (isascii(*low) && islower_l(*low, __cloc())) ? *low-'a'+'A' : *low; #endif return low; } char ctype
::do_tolower(char_type c) const { #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE return isascii(c) ? static_cast
(_DefaultRuneLocale.__maplower[static_cast
(c)]) : c; #elif defined(__NetBSD__) return static_cast
(__classic_lower_table()[static_cast
(c)]); #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) || defined(__NetBSD__) return isascii(c) ? static_cast
(__classic_lower_table()[static_cast
(c)]) : c; #else return (isascii(c) && isupper_l(c, __cloc())) ? c-'A'+'a' : c; #endif } const char* ctype
::do_tolower(char_type* low, const char_type* high) const { for (; low != high; ++low) #ifdef _LIBCPP_HAS_DEFAULTRUNELOCALE *low = isascii(*low) ? static_cast
(_DefaultRuneLocale.__maplower[static_cast
(*low)]) : *low; #elif defined(__NetBSD__) *low = static_cast
(__classic_lower_table()[static_cast
(*low)]); #elif defined(__GLIBC__) || defined(__EMSCRIPTEN__) *low = isascii(*low) ? static_cast
(__classic_lower_table()[static_cast
(*low)]) : *low; #else *low = (isascii(*low) && isupper_l(*low, __cloc())) ? *low-'A'+'a' : *low; #endif return low; } char ctype
::do_widen(char c) const { return c; } const char* ctype
::do_widen(const char* low, const char* high, char_type* dest) const { for (; low != high; ++low, ++dest) *dest = *low; return low; } char ctype
::do_narrow(char_type c, char dfault) const { if (isascii(c)) return static_cast
(c); return dfault; } const char* ctype
::do_narrow(const char_type* low, const char_type* high, char dfault, char* dest) const { for (; low != high; ++low, ++dest) if (isascii(*low)) *dest = *low; else *dest = dfault; return low; } #ifdef __EMSCRIPTEN__ extern "C" const unsigned short ** __ctype_b_loc(); extern "C" const int ** __ctype_tolower_loc(); extern "C" const int ** __ctype_toupper_loc(); #endif #ifdef _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE const ctype
::mask* ctype
::classic_table() _NOEXCEPT { static _LIBCPP_CONSTEXPR const ctype
::mask builtin_table[table_size] = { cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl | space | blank, cntrl | space, cntrl | space, cntrl | space, cntrl | space, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, cntrl, space | blank | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, digit | print | xdigit, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, upper | xdigit | print | alpha, upper | xdigit | print | alpha, upper | xdigit | print | alpha, upper | xdigit | print | alpha, upper | xdigit | print | alpha, upper | xdigit | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, upper | print | alpha, punct | print, punct | print, punct | print, punct | print, punct | print, punct | print, lower | xdigit | print | alpha, lower | xdigit | print | alpha, lower | xdigit | print | alpha, lower | xdigit | print | alpha, lower | xdigit | print | alpha, lower | xdigit | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, lower | print | alpha, punct | print, punct | print, punct | print, punct | print, cntrl, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; return builtin_table; } #else const ctype
::mask* ctype
::classic_table() _NOEXCEPT { #if defined(__APPLE__) || defined(__FreeBSD__) return _DefaultRuneLocale.__runetype; #elif defined(__NetBSD__) return _C_ctype_tab_ + 1; #elif defined(__GLIBC__) return __cloc()->__ctype_b; #elif __sun__ return __ctype_mask; #elif defined(_LIBCPP_MSVCRT) || defined(__MINGW32__) return _ctype+1; // internal ctype mask table defined in msvcrt.dll // This is assumed to be safe, which is a nonsense assumption because we're // going to end up dereferencing it later... #elif defined(__EMSCRIPTEN__) return *__ctype_b_loc(); #elif defined(_NEWLIB_VERSION) // Newlib has a 257-entry table in ctype_.c, where (char)0 starts at [1]. return _ctype_ + 1; #elif defined(_AIX) return (const unsigned int *)__lc_ctype_ptr->obj->mask; #else // Platform not supported: abort so the person doing the port knows what to // fix # warning ctype
::classic_table() is not implemented printf("ctype
::classic_table() is not implemented\n"); abort(); return NULL; #endif } #endif #if defined(__GLIBC__) const int* ctype
::__classic_lower_table() _NOEXCEPT { return __cloc()->__ctype_tolower; } const int* ctype
::__classic_upper_table() _NOEXCEPT { return __cloc()->__ctype_toupper; } #elif __NetBSD__ const short* ctype
::__classic_lower_table() _NOEXCEPT { return _C_tolower_tab_ + 1; } const short* ctype
::__classic_upper_table() _NOEXCEPT { return _C_toupper_tab_ + 1; } #elif defined(__EMSCRIPTEN__) const int* ctype
::__classic_lower_table() _NOEXCEPT { return *__ctype_tolower_loc(); } const int* ctype
::__classic_upper_table() _NOEXCEPT { return *__ctype_toupper_loc(); } #endif // __GLIBC__ || __EMSCRIPTEN__ || __NETBSD__ // template <> class ctype_byname
ctype_byname
::ctype_byname(const char* name, size_t refs) : ctype
(0, false, refs), __l(newlocale(LC_ALL_MASK, name, 0)) { #ifndef _LIBCPP_NO_EXCEPTIONS if (__l == 0) throw runtime_error("ctype_byname
::ctype_byname" " failed to construct for " + string(name)); #endif // _LIBCPP_NO_EXCEPTIONS } ctype_byname
::ctype_byname(const string& name, size_t refs) : ctype
(0, false, refs), __l(newlocale(LC_ALL_MASK, name.c_str(), 0)) { #ifndef _LIBCPP_NO_EXCEPTIONS if (__l == 0) throw runtime_error("ctype_byname
::ctype_byname" " failed to construct for " + name); #endif // _LIBCPP_NO_EXCEPTIONS } ctype_byname
::~ctype_byname() { freelocale(__l); } char ctype_byname
::do_toupper(char_type c) const { return static_cast
(toupper_l(static_cast
(c), __l)); } const char* ctype_byname
::do_toupper(char_type* low, const char_type* high) const { for (; low != high; ++low) *low = static_cast
(toupper_l(static_cast
(*low), __l)); return low; } char ctype_byname
::do_tolower(char_type c) const { return static_cast
(tolower_l(static_cast
(c), __l)); } const char* ctype_byname
::do_tolower(char_type* low, const char_type* high) const { for (; low != high; ++low) *low = static_cast