Searched refs:isupper_l (Results 1 - 4 of 4) sorted by relevance

/external/libcxx/include/support/win32/
H A Dlocale_win32.h78 isupper_l(int c, _locale_t loc) function
/external/libcxx/include/support/xlocale/
H A Dxlocale.h65 static inline int isupper_l(int c, locale_t) { function
/external/libcxx/include/support/ibm/
H A Dxlocale.h132 int isupper_l(int c, locale_t locale) function
/external/libcxx/src/
H A Dlocale.cpp848 return (isascii(c) && isupper_l(c, _LIBCPP_GET_C_LOCALE)) ? c-L'A'+'a' : c;
862 *low = (isascii(*low) && isupper_l(*low, _LIBCPP_GET_C_LOCALE)) ? *low-L'A'+L'a' : *low;
965 return (isascii(c) && isupper_l(c, _LIBCPP_GET_C_LOCALE)) ? c-'A'+'a' : c;
980 *low = (isascii(*low) && isupper_l(*low, _LIBCPP_GET_C_LOCALE)) ? *low-'A'+'a' : *low;

Completed in 191 milliseconds