Home
last modified time | relevance | path

Searched refs:wctrans_t (Results 1 – 16 of 16) sorted by relevance

/glibc-2.36/wctype/
Dwctype.h48 typedef const __int32_t *wctrans_t; typedef
52 extern wctrans_t wctrans (const char *__property) __THROW;
55 extern wint_t towctrans (wint_t __wc, wctrans_t __desc) __THROW;
137 extern wctrans_t wctrans_l (const char *__property, locale_t __locale)
141 extern wint_t towctrans_l (wint_t __wc, wctrans_t __desc,
Dtowctrans.c25 __towctrans (wint_t wc, wctrans_t desc) in __towctrans()
29 if (desc == (wctrans_t) 0) in __towctrans()
Dtowctrans_l.c26 __towctrans_l (wint_t wc, wctrans_t desc, locale_t locale) in __towctrans_l()
30 if (desc == (wctrans_t) 0) in __towctrans_l()
Dwctrans.c23 wctrans_t
45 return (wctrans_t) _NL_CURRENT_DATA (LC_CTYPE)->values[i].string; in __wctrans()
Dwctrans_l.c23 wctrans_t
45 return (wctrans_t) locale->__locales[LC_CTYPE]->values[i].string; in __wctrans_l()
/glibc-2.36/conform/data/
Dwctype.h-data3 type wctrans_t
24 function wint_t towctrans (wint_t, wctrans_t)
27 function wctrans_t wctrans (const char*)
43 function wint_t towctrans_l (wint_t, wctrans_t, locale_t)
46 function wctrans_t wctrans_l (const char*, locale_t)
/glibc-2.36/localedata/
Dtst-trans.c31 wctrans_t t; in do_test()
39 if (t == (wctrans_t) 0) in do_test()
Ddump-ctype.c82 wctrans_t map; in dump_map()
87 if (map == (wctrans_t) 0) in dump_map()
/glibc-2.36/include/
Dwctype.h19 extern wctrans_t __wctrans (const char *__property);
20 extern wint_t __towctrans (wint_t __wc, wctrans_t __desc);
/glibc-2.36/localedata/tests-mbwc/
Dtst_wctrans.c13 TST_DECL_VARS (wctrans_t); in tst_wctrans()
Dtst_towctrans.c17 wctrans_t wto; in tst_towctrans()
Dtst_types.h703 typedef TEX_ERRET_REC (wctrans_t) TEX_WCTRANS_REC;
/glibc-2.36/stdio-common/
D_i18n_number.h40 wctrans_t map = __wctrans ("to_outpunct"); in _i18n_number_rewrite()
Dvfscanf-internal.c1453 wctrans_t map = __wctrans ("to_inpunct"); in __vfwscanf_internal()
2173 wctrans_t map; in __vfwscanf_internal()
/glibc-2.36/manual/
Dctype.texi712 @deftp {Data Type} wctrans_t
724 @deftypefun wctrans_t wctrans (const char *@var{property})
747 @deftypefun wint_t towctrans (wint_t @var{wc}, wctrans_t @var{desc})
/glibc-2.36/ChangeLog.old/
DChangeLog.63958 * wctype/wctype.h (wctrans_t): Use __const instead of const.