Lines Matching defs:__classic_lower_table
760 return std::__libcpp_isascii(c) ? ctype<char>::__classic_lower_table()[c] : c;
771 *low = std::__libcpp_isascii(*low) ? ctype<char>::__classic_lower_table()[*low] : *low;
850 return static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(c)]);
852 return std::__libcpp_isascii(c) ? static_cast<char>(__classic_lower_table()[static_cast<size_t>(c)]) : c;
865 *low = static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(*low)]);
867 *low = std::__libcpp_isascii(*low) ? static_cast<char>(__classic_lower_table()[static_cast<size_t>(*low)]) : *low;
1018 const int* ctype<char>::__classic_lower_table() noexcept { return _LIBCPP_GET_C_LOCALE->__ctype_tolower; }
1022 const short* ctype<char>::__classic_lower_table() noexcept { return _C_tolower_tab_ + 1; }
1027 const int* ctype<char>::__classic_lower_table() noexcept { return *__ctype_tolower_loc(); }
1031 const unsigned short* ctype<char>::__classic_lower_table() _NOEXCEPT {