Home
last modified time | relevance | path

Searched refs:thousands_sep (Results 1 – 25 of 171) sorted by relevance

1234567

/minix3/external/bsd/libc++/dist/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/
H A Dthousands_sep.pass.cpp63 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
67 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
71 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
75 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
80 assert(f.thousands_sep() == ','); in main()
84 assert(f.thousands_sep() == ','); in main()
88 assert(f.thousands_sep() == L','); in main()
92 assert(f.thousands_sep() == L','); in main()
97 assert(f.thousands_sep() == ' '); in main()
101 assert(f.thousands_sep() == ' '); in main()
[all …]
/minix3/external/bsd/libc++/dist/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/
H A Dthousands_sep.pass.cpp69 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
73 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
77 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
81 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
86 assert(f.thousands_sep() == ','); in main()
90 assert(f.thousands_sep() == ','); in main()
94 assert(f.thousands_sep() == L','); in main()
98 assert(f.thousands_sep() == L','); in main()
103 assert(f.thousands_sep() == ' '); in main()
107 assert(f.thousands_sep() == ' '); in main()
[all …]
/minix3/external/bsd/libc++/dist/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct.byname/
H A Dthousands_sep.pass.cpp31 assert(np.thousands_sep() == ','); in main()
36 assert(np.thousands_sep() == L','); in main()
44 assert(np.thousands_sep() == ','); in main()
49 assert(np.thousands_sep() == L','); in main()
57 assert(np.thousands_sep() == ','); in main()
62 assert(np.thousands_sep() == L','); in main()
/minix3/external/bsd/libc++/dist/libcxx/test/std/localization/locale.categories/facet.numpunct/locale.numpunct.byname/
H A Dthousands_sep.pass.cpp34 assert(np.thousands_sep() == ','); in main()
39 assert(np.thousands_sep() == L','); in main()
47 assert(np.thousands_sep() == ','); in main()
52 assert(np.thousands_sep() == L','); in main()
60 assert(np.thousands_sep() == ','); in main()
65 assert(np.thousands_sep() == L','); in main()
/minix3/external/bsd/libc++/dist/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
H A Dthousands_sep.pass.cpp61 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
65 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
69 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
73 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
/minix3/external/bsd/libc++/dist/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/
H A Dthousands_sep.pass.cpp61 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
65 assert(f.thousands_sep() == std::numeric_limits<char>::max()); in main()
69 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
73 assert(f.thousands_sep() == std::numeric_limits<wchar_t>::max()); in main()
/minix3/external/bsd/libc++/dist/libcxx/test/std/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/
H A Dthousands_sep.pass.cpp25 assert(np.thousands_sep() == ','); in main()
30 assert(np.thousands_sep() == L','); in main()
/minix3/external/bsd/libc++/dist/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/
H A Dthousands_sep.pass.cpp25 assert(np.thousands_sep() == ','); in main()
30 assert(np.thousands_sep() == L','); in main()
/minix3/lib/libc/stdlib/
H A Dstrfmon.c103 *--bufend = thousands_sep; \
524 char thousands_sep; in __format_grouped_double() local
532 thousands_sep = *lc->mon_thousands_sep; in __format_grouped_double()
533 if (thousands_sep == '\0') in __format_grouped_double()
534 thousands_sep = *lc->thousands_sep; in __format_grouped_double()
587 thousands_sep != '\0' && /* XXX: need investigation */ in __format_grouped_double()
/minix3/lib/libc/citrus/
H A Dcitrus_lc_numeric.c81 free(__UNCONST(data->thousands_sep)); in _citrus_LC_NUMERIC_uninit()
95 { _CITRUS_LC_NUMERIC_SYM_THOUSANDS_SEP, OFFSET(thousands_sep) },
/minix3/sys/sys/
H A Dlocaledef.h69 const char *thousands_sep; member
/minix3/lib/libc/locale/
H A Dsetlocale.c96 ldata->thousands_sep = __UNCONST(numeric->thousands_sep); in _setlocale_cache()
H A Dglobal_locale.c118 .thousands_sep = __UNCONST(""),
/minix3/include/
H A Dlocale.h41 char *thousands_sep; member
/minix3/lib/libc/stdio/
H A Dvfwprintf.c631 char thousands_sep; /* locale specific thousands separator */ in WDECL() local
827 thousands_sep = '\0'; in WDECL()
927 thousands_sep = *(localeconv_l(loc)->thousands_sep); in WDECL()
931 if (thousands_sep == 0) in WDECL()
932 thousands_sep = ','; in WDECL()
1431 flags & GROUPING, thousands_sep, in WDECL()
1438 flags & GROUPING, thousands_sep, in WDECL()
1528 PRINT(&thousands_sep, in WDECL()
/minix3/share/locale/numeric/converted/
H A Duk_UA.ISO8859-5.src31 # Separator for groups of digits left of above (thousands_sep)
H A Den_NZ.ISO8859-1.src31 # Separator for groups of digits left of above (thousands_sep)
H A Den_AU.ISO8859-1.src31 # Separator for groups of digits left of above (thousands_sep)
H A Dnl_NL.ISO8859-15.src31 # Separator for groups of digits left of above (thousands_sep)
H A Dca_ES.ISO8859-15.src31 # Separator for groups of digits left of above (thousands_sep)
H A Den_GB.ISO8859-1.src31 # Separator for groups of digits left of above (thousands_sep)
H A Den_US.US-ASCII.src31 # Separator for groups of digits left of above (thousands_sep)
H A Duk_UA.KOI8-U.src31 # Separator for groups of digits left of above (thousands_sep)
/minix3/share/locale/numeric/
H A Det_EE.UTF-8.src31 # Separator for groups of digits left of above (thousands_sep)
H A Dbe_BY.UTF-8.src31 # Separator for groups of digits left of above (thousands_sep)

1234567