Searched refs:locale_t (Results 1 - 25 of 196) sorted by relevance

12345678

/netbsd-current/external/apache2/llvm/dist/libcxx/include/__support/xlocale/
H A D__nop_locale_mgmt.h18 typedef void *locale_t; typedef
19 static inline locale_t duplocale(locale_t) {
23 static inline void freelocale(locale_t) {
26 static inline locale_t newlocale(int, const char *, locale_t) {
30 static inline locale_t uselocale(locale_t) {
H A D__posix_l_fallback.h22 inline _LIBCPP_INLINE_VISIBILITY int isalnum_l(int c, locale_t) {
26 inline _LIBCPP_INLINE_VISIBILITY int isalpha_l(int c, locale_t) {
30 inline _LIBCPP_INLINE_VISIBILITY int isblank_l(int c, locale_t) {
34 inline _LIBCPP_INLINE_VISIBILITY int iscntrl_l(int c, locale_t) {
38 inline _LIBCPP_INLINE_VISIBILITY int isdigit_l(int c, locale_t) {
42 inline _LIBCPP_INLINE_VISIBILITY int isgraph_l(int c, locale_t) {
46 inline _LIBCPP_INLINE_VISIBILITY int islower_l(int c, locale_t) {
50 inline _LIBCPP_INLINE_VISIBILITY int isprint_l(int c, locale_t) {
54 inline _LIBCPP_INLINE_VISIBILITY int ispunct_l(int c, locale_t) {
58 inline _LIBCPP_INLINE_VISIBILITY int isspace_l(int c, locale_t) {
[all...]
H A D__strtonum_fallback.h23 char **endptr, locale_t) {
28 char **endptr, locale_t) {
33 char **endptr, locale_t) {
38 strtoll_l(const char *nptr, char **endptr, int base, locale_t) {
43 strtoull_l(const char *nptr, char **endptr, int base, locale_t) {
48 wcstoll_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t) {
53 wcstoull_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t) {
58 wchar_t **endptr, locale_t) {
/netbsd-current/include/
H A Dctype.h62 typedef struct _locale *locale_t; typedef in typeref:struct:_locale
66 int isalnum_l(int, locale_t);
67 int isalpha_l(int, locale_t);
68 int isblank_l(int, locale_t);
69 int iscntrl_l(int, locale_t);
70 int isdigit_l(int, locale_t);
71 int isgraph_l(int, locale_t);
72 int islower_l(int, locale_t);
73 int isprint_l(int, locale_t);
74 int ispunct_l(int, locale_t);
[all...]
H A Dwctype.h79 typedef struct _locale *locale_t; typedef in typeref:struct:_locale
82 int iswalnum_l(wint_t, locale_t);
83 int iswalpha_l(wint_t, locale_t);
84 int iswblank_l(wint_t, locale_t);
85 int iswcntrl_l(wint_t, locale_t);
86 int iswdigit_l(wint_t, locale_t);
87 int iswgraph_l(wint_t, locale_t);
88 int iswlower_l(wint_t, locale_t);
89 int iswprint_l(wint_t, locale_t);
90 int iswpunct_l(wint_t, locale_t);
[all...]
H A Dlocale.h83 typedef struct _locale *locale_t; typedef in typeref:struct:_locale
94 typedef struct _locale *locale_t; typedef in typeref:struct:_locale
104 locale_t duplocale(locale_t);
105 void freelocale(locale_t);
106 struct lconv *localeconv_l(locale_t);
107 locale_t newlocale(int, const char *, locale_t);
115 #define LC_C_LOCALE ((locale_t)__UNCONST(&_lc_C_locale))
H A Dinttypes.h66 typedef struct _locale *locale_t; typedef in typeref:struct:_locale
70 char ** __restrict, int, locale_t);
72 char ** __restrict, int, locale_t);
74 wchar_t ** __restrict, int, locale_t);
76 wchar_t ** __restrict, int, locale_t);
88 intmax_t, intmax_t, int *, locale_t);
90 uintmax_t, uintmax_t, int *, locale_t);
/netbsd-current/external/apache2/llvm/dist/libcxx/include/__support/solaris/
H A Dxlocale.h23 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...);
24 int asprintf_l(char **__s, locale_t __l, const char *__format, ...);
26 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...);
28 int toupper_l(int __c, locale_t __l);
29 int tolower_l(int __c, locale_t __l);
32 struct lconv *localeconv_l(locale_t __l);
37 int __base, locale_t __loc) {
42 int __base, locale_t __loc) {
47 int __base, locale_t __loc) {
52 int __base, locale_t __lo
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/include/__support/ibm/
H A Dxlocale.h28 int isalnum_l(int c, locale_t locale)
33 int isalpha_l(int c, locale_t locale)
38 int isblank_l(int c, locale_t locale)
43 int iscntrl_l(int c, locale_t locale)
48 int isdigit_l(int c, locale_t locale)
53 int isgraph_l(int c, locale_t locale)
58 int islower_l(int c, locale_t locale)
63 int isprint_l(int c, locale_t locale)
69 int ispunct_l(int c, locale_t locale)
74 int isspace_l(int c, locale_t local
[all...]
H A Dlocale_mgmt_aix.h34 typedef void* locale_t; typedef
38 locale_t newlocale(int category_mask, const char *locale, locale_t base)
44 return (locale_t)0;
49 return (locale_t)0;
66 return (locale_t)newloc;
69 void freelocale(locale_t locobj)
74 locale_t uselocale(locale_t newloc)
76 return (locale_t)
[all...]
H A Dlocale_mgmt_zos.h41 } * locale_t; typedef in typeref:struct:locale_struct
45 locale_t newlocale(int category_mask, const char* locale, locale_t base);
46 void freelocale(locale_t locobj);
47 locale_t uselocale(locale_t newloc);
/netbsd-current/external/apache2/llvm/dist/libcxx/include/__support/musl/
H A Dxlocale.h28 locale_t) {
33 int base, locale_t) {
38 int base, locale_t) {
44 locale_t) {
49 locale_t) {
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dlocale.d90 alias locale_t = _xlocale*;
112 enum LC_GLOBAL_LOCALE = (cast(locale_t)-1);
115 locale_t duplocale(locale_t locale);
117 void freelocale(locale_t locale);
121 locale_t newlocale(int mask, const char* locale, locale_t base);
125 locale_t uselocale (locale_t locale);
206 alias locale_t
[all...]
H A Dstring.d23 /// Exposes `locale_t` as defined in `core.sys.posix.locale` (`<locale.h>`)
24 public import core.sys.posix.locale : locale_t;
40 int strcoll_l(scope const char* s1, scope const char* s2, locale_t locale);
42 char* strerror_l(int, locale_t);
52 size_t strxfrm_l(char* s1, scope const char* s2, size_t n, locale_t locale);
H A Dstrings.d23 public import core.sys.posix.locale : locale_t;
30 int strcasecmp_l(scope const char* s1, scope const char* s2, scope locale_t locale);
34 int strncasecmp_l(scope const char* s1, const char* s2, size_t n, locale_t locale);
/netbsd-current/external/apache2/llvm/dist/libcxx/include/__support/win32/
H A Dlocale_win32.h95 class locale_t { class
97 locale_t() function in class:locale_t
99 locale_t(std::nullptr_t) function in class:locale_t
101 locale_t(_locale_t __xlocale, const char* __xlocale_str) function in class:locale_t
103 locale_t(const locale_t &__l) function in class:locale_t
106 ~locale_t() {
110 locale_t &operator =(const locale_t &__l) {
117 friend bool operator==(const locale_t
[all...]
/netbsd-current/lib/libc/locale/
H A Dduplocale.c42 locale_t
43 duplocale(locale_t src)
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/
H A Dxlocale_port.h5 MB_CUR_MAX_L(locale_t __l) {
6 locale_t __old = uselocale(__l);
14 size_t __nwc, size_t __len, mbstate_t * __restrict __st, locale_t __l)
16 locale_t __old = uselocale(__l);
24 size_t __nms, size_t __len, mbstate_t * __restrict __st, locale_t __l)
26 locale_t __old = uselocale(__l);
34 mbstate_t * __restrict __st, locale_t __l)
36 locale_t __old = uselocale(__l);
44 size_t __len, mbstate_t * __restrict __st, locale_t __l)
46 locale_t __ol
[all...]
H A Dtime_members.cc52 (locale_t)_M_c_locale_timepunct);
130 _M_data->_M_date_format = nl_langinfo_l(D_FMT, (locale_t)__cloc);
132 (locale_t)__cloc);
133 _M_data->_M_time_format = nl_langinfo_l(T_FMT, (locale_t)__cloc);
135 (locale_t)__cloc);
137 (locale_t)__cloc);
139 (locale_t)__cloc);
140 _M_data->_M_am = nl_langinfo_l(AM_STR, (locale_t)__cloc);
141 _M_data->_M_pm = nl_langinfo_l(PM_STR, (locale_t)__cloc);
143 (locale_t)__clo
[all...]
H A Dcollate_members.cc46 int __cmp = strcoll_l(__one, __two, (locale_t)_M_c_locale_collate);
54 { return strxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }
62 int __cmp = wcscoll_l(__one, __two, (locale_t)_M_c_locale_collate);
70 { return wcsxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/dragonfly/
H A Dxlocale_port.h5 MB_CUR_MAX_L(locale_t __l) {
6 locale_t __old = uselocale(__l);
14 size_t __nwc, size_t __len, mbstate_t * __restrict __st, locale_t __l)
16 locale_t __old = uselocale(__l);
24 size_t __nms, size_t __len, mbstate_t * __restrict __st, locale_t __l)
26 locale_t __old = uselocale(__l);
34 mbstate_t * __restrict __st, locale_t __l)
36 locale_t __old = uselocale(__l);
44 size_t __len, mbstate_t * __restrict __st, locale_t __l)
46 locale_t __ol
[all...]
H A Dtime_members.cc52 (locale_t)_M_c_locale_timepunct);
130 _M_data->_M_date_format = nl_langinfo_l(D_FMT, (locale_t)__cloc);
132 (locale_t)__cloc);
133 _M_data->_M_time_format = nl_langinfo_l(T_FMT, (locale_t)__cloc);
135 (locale_t)__cloc);
137 (locale_t)__cloc);
139 (locale_t)__cloc);
140 _M_data->_M_am = nl_langinfo_l(AM_STR, (locale_t)__cloc);
141 _M_data->_M_pm = nl_langinfo_l(PM_STR, (locale_t)__cloc);
143 (locale_t)__clo
[all...]
H A Dcollate_members.cc46 int __cmp = strcoll_l(__one, __two, (locale_t)_M_c_locale_collate);
54 { return strxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }
62 int __cmp = wcscoll_l(__one, __two, (locale_t)_M_c_locale_collate);
70 { return wcsxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }
/netbsd-current/external/apache2/llvm/dist/libcxx/src/support/win32/
H A Dlocale_win32.cpp20 locale_t newlocale( int mask, const char * locale, locale_t /*base*/ )
25 decltype(MB_CUR_MAX) MB_CUR_MAX_L( locale_t __l )
35 lconv *localeconv_l( locale_t &loc )
44 mbstate_t *__restrict ps, locale_t loc )
50 size_t len, mbstate_t *__restrict ps, locale_t loc )
56 locale_t loc )
62 size_t n, mbstate_t *__restrict ps, locale_t loc )
68 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc )
74 size_t nwc, size_t len, mbstate_t *__restrict ps, locale_t lo
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/src/support/solaris/
H A Dxlocale.cpp18 int isxdigit_l(int __c, locale_t __l) {
22 int iswxdigit_l(wint_t __c, locale_t __l) {
30 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...)
39 int asprintf_l(char **__s, locale_t __l, const char *__format, ...) {
48 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...) {
58 size_t __max, mbstate_t *__ps, locale_t __loc) {
62 struct lconv *localeconv_l(locale_t __l) {

Completed in 245 milliseconds

12345678