Home | History | Annotate | Download | only in ibm

Lines Matching refs:locale

39 locale_t newlocale(int category_mask, const char *locale, locale_t base)
42 if ((loc = (_LC_locale_t *)__xopen_locale(locale)) == NULL)
81 int isalnum_l(int c, locale_t locale)
83 return __xisalnum(locale, c);
86 int isalpha_l(int c, locale_t locale)
88 return __xisalpha(locale, c);
91 int isblank_l(int c, locale_t locale)
93 return __xisblank(locale, c);
96 int iscntrl_l(int c, locale_t locale)
98 return __xiscntrl(locale, c);
101 int isdigit_l(int c, locale_t locale)
103 return __xisdigit(locale, c);
106 int isgraph_l(int c, locale_t locale)
108 return __xisgraph(locale, c);
111 int islower_l(int c, locale_t locale)
113 return __xislower(locale, c);
116 int isprint_l(int c, locale_t locale)
118 return __xisprint(locale, c);
122 int ispunct_l(int c, locale_t locale)
124 return __xispunct(locale, c);
127 int isspace_l(int c, locale_t locale)
129 return __xisspace(locale, c);
132 int isupper_l(int c, locale_t locale)
134 return __xisupper(locale, c);
138 int isxdigit_l(int c, locale_t locale)
140 return __xisxdigit(locale, c);
144 int iswalnum_l(wchar_t wc, locale_t locale)
146 return __xiswalnum(locale, wc);
150 int iswalpha_l(wchar_t wc, locale_t locale)
152 return __xiswalpha(locale, wc);
156 int iswblank_l(wchar_t wc, locale_t locale)
158 return __xiswblank(locale, wc);
162 int iswcntrl_l(wchar_t wc, locale_t locale)
164 return __xiswcntrl(locale, wc);
168 int iswdigit_l(wchar_t wc, locale_t locale)
170 return __xiswdigit(locale, wc);
174 int iswgraph_l(wchar_t wc, locale_t locale)
176 return __xiswgraph(locale, wc);
180 int iswlower_l(wchar_t wc, locale_t locale)
182 return __xiswlower(locale, wc);
186 int iswprint_l(wchar_t wc, locale_t locale)
188 return __xiswprint(locale, wc);
192 int iswpunct_l(wchar_t wc, locale_t locale)
194 return __xiswpunct(locale, wc);
198 int iswspace_l(wchar_t wc, locale_t locale)
200 return __xiswspace(locale, wc);
204 int iswupper_l(wchar_t wc, locale_t locale)
206 return __xiswupper(locale, wc);
210 int iswxdigit_l(wchar_t wc, locale_t locale)
212 return __xiswxdigit(locale, wc);
216 int iswctype_l(wint_t wc, wctype_t desc, locale_t locale)
218 return __xiswctype(locale, wc, desc);
222 int toupper_l(int c, locale_t locale)
224 return __xtoupper(locale, c);
227 int tolower_l(int c, locale_t locale)
229 return __xtolower(locale, c);
232 wint_t towupper_l(wint_t wc, locale_t locale)
234 return __xtowupper(locale, wc);
237 wint_t towlower_l(wint_t wc, locale_t locale)
239 return __xtowlower(locale, wc);
243 int strcoll_l(const char *__s1, const char *__s2, locale_t locale)
245 return __xstrcoll(locale, __s1, __s2);
248 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t locale)
250 return __xwcscoll(locale, __s1, __s2);
253 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t locale)
255 return __xstrxfrm(locale, __s1, __s2, __n);
260 locale_t locale)
262 return __xwcsxfrm(locale, __ws1, __ws2, __n);
270 const struct tm *__tm, locale_t locale) {
271 return __xstrftime(locale, __s, __size, __fmt, __tm);
278 int __base, locale_t locale) {
283 int __base, locale_t locale) {
288 locale_t locale) {
293 int __base, locale_t locale) {
298 int __base, locale_t locale) {