Searched refs:islower_l (Results 1 - 5 of 5) sorted by relevance

/external/libcxx/include/support/android/
H A Dlocale_bionic.h47 static inline int islower_l(int c, locale_t) { function
/external/libcxx/include/support/win32/
H A Dlocale_win32.h71 islower_l(int c, _locale_t loc) function
/external/libcxx/include/support/ibm/
H A Dxlocale.h111 int islower_l(int c, locale_t locale) function
/external/libcxx/include/support/solaris/
H A Dxlocale.h73 int islower_l(int,locale_t);
/external/libcxx/src/
H A Dlocale.cpp832 *low = (isascii(*low) && islower_l(*low, __cloc())) ? (*low-L'a'+L'A') : *low;
928 return (isascii(c) && islower_l(c, __cloc())) ? c-'a'+'A' : c;
945 *low = (isascii(*low) && islower_l(*low, __cloc())) ? *low-'a'+'A' : *low;

Completed in 1216 milliseconds