Lines Matching defs:__classic_upper_table
737 return isascii(c) ? ctype<char>::__classic_upper_table()[c] : c;
748 *low = isascii(*low) ? ctype<char>::__classic_upper_table()[*low] : *low;
821 return static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]);
823 return isascii(c) ? static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]) : c;
834 *low = static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(*low)]);
836 *low = isascii(*low) ? static_cast<char>(__classic_upper_table()[static_cast<size_t>(*low)]) : *low;
1015 const int* ctype<char>::__classic_upper_table() noexcept { return _LIBCPP_GET_C_LOCALE->__ctype_toupper; }
1019 const short* ctype<char>::__classic_upper_table() noexcept { return _C_toupper_tab_ + 1; }
1024 const int* ctype<char>::__classic_upper_table() noexcept { return *__ctype_toupper_loc(); }
1033 const unsigned short* ctype<char>::__classic_upper_table() _NOEXCEPT {