/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
xlocale.h | 13 typedef struct _LC_locale_t* locale_t; typedef in typeref:struct:_LC_locale_t 24 #define LC_GLOBAL_LOCALE ((locale_t)-1) 26 size_t __mb_cur_max(locale_t l); 29 locale_t newlocale(int mask, const char * locale, locale_t base); 30 void freelocale(locale_t loc); 32 wint_t btowc_l(int __c, locale_t __l); 34 int wctob_l(wint_t __c, locale_t __l); 36 size_t wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l); 39 mbstate_t *__ps, locale_t __l) [all...] |
/ndk/sources/android/support/src/musl-locale/ |
isalnum_l.c | 3 int isalnum_l(int c, locale_t l)
|
isalpha_l.c | 3 int isalpha_l(int c, locale_t l)
|
isblank_l.c | 3 int isblank_l(int c, locale_t l)
|
iscntrl_l.c | 3 int iscntrl_l(int c, locale_t l)
|
isdigit_l.c | 3 int isdigit_l(int c, locale_t l)
|
isgraph_l.c | 3 int isgraph_l(int c, locale_t l)
|
islower_l.c | 3 int islower_l(int c, locale_t l)
|
isprint_l.c | 3 int isprint_l(int c, locale_t l)
|
ispunct_l.c | 3 int ispunct_l(int c, locale_t l)
|
isspace_l.c | 3 int isspace_l(int c, locale_t l)
|
isupper_l.c | 3 int isupper_l(int c, locale_t l)
|
iswalnum_l.c | 3 int iswalnum_l(wint_t c, locale_t l)
|
iswalpha_l.c | 3 int iswalpha_l(wint_t c, locale_t l)
|
iswblank_l.c | 3 int iswblank_l(wint_t c, locale_t l)
|
iswcntrl_l.c | 3 int iswcntrl_l(wint_t c, locale_t l)
|
iswctype_l.c | 3 int iswctype_l(wint_t c, wctype_t t, locale_t l)
|
iswdigit_l.c | 3 int iswdigit_l(wint_t c, locale_t l)
|
iswgraph_l.c | 3 int iswgraph_l(wint_t c, locale_t l)
|
iswlower_l.c | 3 int iswlower_l(wint_t c, locale_t l)
|
iswprint_l.c | 3 int iswprint_l(wint_t c, locale_t l)
|
iswpunct_l.c | 3 int iswpunct_l(wint_t c, locale_t l)
|
iswspace_l.c | 3 int iswspace_l(wint_t c, locale_t l)
|
iswupper_l.c | 3 int iswupper_l(wint_t c, locale_t l)
|
iswxdigit_l.c | 3 int iswxdigit_l(wint_t c, locale_t l)
|