Lines Matching defs:__classic_upper_table
737 return std::__libcpp_isascii(c) ? ctype<char>::__classic_upper_table()[c] : c;
748 *low = std::__libcpp_isascii(*low) ? ctype<char>::__classic_upper_table()[*low] : *low;
822 return static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]);
824 return std::__libcpp_isascii(c) ? static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]) : c;
837 *low = static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(*low)]);
839 *low = std::__libcpp_isascii(*low) ? static_cast<char>(__classic_upper_table()[static_cast<size_t>(*low)]) : *low;
1020 const int* ctype<char>::__classic_upper_table() noexcept { return _LIBCPP_GET_C_LOCALE->__ctype_toupper; }
1024 const short* ctype<char>::__classic_upper_table() noexcept { return _C_toupper_tab_ + 1; }
1029 const int* ctype<char>::__classic_upper_table() noexcept { return *__ctype_toupper_loc(); }
1038 const unsigned short* ctype<char>::__classic_upper_table() _NOEXCEPT {