Home
last modified time | relevance | path

Searched refs:__classic_upper_table (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp737 return isascii(c) ? ctype<char>::__classic_upper_table()[c] : c; in do_toupper()
748 *low = isascii(*low) ? ctype<char>::__classic_upper_table()[*low] : *low; in do_toupper()
821 return static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]); in do_toupper()
823 return isascii(c) ? static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(c)]) : c; in do_toupper()
834 *low = static_cast<char>(__classic_upper_table()[static_cast<unsigned char>(*low)]); in do_toupper()
836 …*low = isascii(*low) ? static_cast<char>(__classic_upper_table()[static_cast<size_t>(*low)]) : *lo… in do_toupper()
1015 const int* ctype<char>::__classic_upper_table() noexcept { return _LIBCPP_GET_C_LOCALE->__ctype_tou… in __classic_upper_table() function in ctype
1019 const short* ctype<char>::__classic_upper_table() noexcept { return _C_toupper_tab_ + 1; } in __classic_upper_table() function in ctype
1024 const int* ctype<char>::__classic_upper_table() noexcept { return *__ctype_toupper_loc(); } in __classic_upper_table() function in ctype
1033 const unsigned short* ctype<char>::__classic_upper_table() _NOEXCEPT { in __classic_upper_table() function in ctype
/src/contrib/llvm-project/libcxx/include/
H A D__locale588 static const int* __classic_upper_table() _NOEXCEPT;
592 static const short* __classic_upper_table() _NOEXCEPT;
596 static const unsigned short* __classic_upper_table() _NOEXCEPT;