Lines Matching defs:__classic_lower_table
759 return isascii(c) ? ctype<char>::__classic_lower_table()[c] : c;
770 *low = isascii(*low) ? ctype<char>::__classic_lower_table()[*low] : *low;
847 return static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(c)]);
849 return isascii(c) ? static_cast<char>(__classic_lower_table()[static_cast<size_t>(c)]) : c;
860 *low = static_cast<char>(__classic_lower_table()[static_cast<unsigned char>(*low)]);
862 *low = isascii(*low) ? static_cast<char>(__classic_lower_table()[static_cast<size_t>(*low)]) : *low;
1013 const int* ctype<char>::__classic_lower_table() noexcept { return _LIBCPP_GET_C_LOCALE->__ctype_tolower; }
1017 const short* ctype<char>::__classic_lower_table() noexcept { return _C_tolower_tab_ + 1; }
1022 const int* ctype<char>::__classic_lower_table() noexcept { return *__ctype_tolower_loc(); }
1026 const unsigned short* ctype<char>::__classic_lower_table() _NOEXCEPT {