Lines Matching refs:locale_t

31 class locale_t {
33 locale_t()
35 locale_t(std::nullptr_t)
37 locale_t(_locale_t __xlocale, const char* __xlocale_str)
40 friend bool operator==(const locale_t& __left, const locale_t& __right) {
44 friend bool operator==(const locale_t& __left, int __right) {
48 friend bool operator==(const locale_t& __left, long long __right) {
52 friend bool operator==(const locale_t& __left, std::nullptr_t) {
56 friend bool operator==(int __left, const locale_t& __right) {
60 friend bool operator==(std::nullptr_t, const locale_t& __right) {
64 friend bool operator!=(const locale_t& __left, const locale_t& __right) {
68 friend bool operator!=(const locale_t& __left, int __right) {
72 friend bool operator!=(const locale_t& __left, long long __right) {
76 friend bool operator!=(const locale_t& __left, std::nullptr_t __right) {
80 friend bool operator!=(int __left, const locale_t& __right) {
84 friend bool operator!=(std::nullptr_t __left, const locale_t& __right) {
105 locale_t newlocale( int mask, const char * locale, locale_t base );
112 lconv *localeconv_l( locale_t loc );
114 mbstate_t *__restrict ps, locale_t loc);
116 size_t len, mbstate_t *__restrict ps, locale_t loc );
118 locale_t loc);
120 size_t n, mbstate_t *__restrict ps, locale_t loc);
122 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc);
124 size_t nwc, size_t len, mbstate_t *__restrict ps, locale_t loc);
125 wint_t btowc_l( int c, locale_t loc );
126 int wctob_l( wint_t c, locale_t loc );
128 decltype(MB_CUR_MAX) MB_CUR_MAX_L( locale_t __l );
139 float strtof_l(const char*, char**, locale_t);
140 long double strtold_l(const char*, char**, locale_t);
184 _LIBCPP_FUNC_VIS int snprintf_l(char *ret, size_t n, locale_t loc, const char *format, ...);
185 _LIBCPP_FUNC_VIS int asprintf_l( char **ret, locale_t loc, const char *format, ... );
186 _LIBCPP_FUNC_VIS int vasprintf_l( char **ret, locale_t loc, const char *format, va_list ap );
189 inline int isblank_l( int c, locale_t /*loc*/ )
193 inline int iswblank_l( wint_t c, locale_t /*loc*/ )