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

/external/libcxx/include/support/xlocale/
H A D__posix_l_fallback.h95 inline _LIBCPP_ALWAYS_INLINE int iswlower_l(wint_t c, locale_t) { function
/external/libcxx/include/support/ibm/
H A Dxlocale.h125 int iswlower_l(wchar_t wc, locale_t locale) function
/external/libcxx/include/support/win32/
H A Dlocale_win32.h161 #define iswlower_l _iswlower_l macro
/external/libcxx/src/
H A Dlocale.cpp833 return (isascii(c) && iswlower_l(c, _LIBCPP_GET_C_LOCALE)) ? c-L'a'+L'A' : c;
1280 if ((m & lower) == lower) result |= (iswlower_l(ch, __l) != 0);
1311 if (iswlower_l(ch, __l))
1348 if ((m & lower) == lower && iswlower_l(ch, __l)) break;
1373 if ((m & lower) == lower && iswlower_l(ch, __l)) continue;

Completed in 275 milliseconds