/third_party/python/Lib/test/ |
H A D | test__locale.py | 1 from _locale import (setlocale, LC_ALL, LC_CTYPE, LC_NUMERIC, localeconv, Error) namespace 97 set_locale = setlocale(LC_NUMERIC) 120 setlocale(LC_NUMERIC, loc) 140 setlocale(LC_NUMERIC, loc) 158 setlocale(LC_NUMERIC, loc) 167 set_locale = setlocale(LC_NUMERIC) 185 setlocale(LC_NUMERIC, loc)
|
H A D | test_locale.py | 31 oldlocale = locale.setlocale(locale.LC_NUMERIC) 34 locale.setlocale(locale.LC_NUMERIC, tloc) 43 locale.setlocale(locale.LC_NUMERIC, oldlocale) 270 locale_type = locale.LC_NUMERIC 568 locale.setlocale(locale.LC_NUMERIC)
|
/third_party/musl/src/locale/ |
H A D | wcstod_l.c | 75 if (l && s && l->cat[LC_NUMERIC] && l->cat[LC_NUMERIC]->flag == ICU_VALID) { in wcstod_l() 100 double res = icu_wcstod_l(l->cat[LC_NUMERIC]->name, tmp_s, &cur_status, &parse_pos); in wcstod_l()
|
H A D | localeconv.c | 116 if ((libc.global_locale.cat[LC_NUMERIC] && libc.global_locale.cat[LC_NUMERIC]->flag == ICU_VALID) || in localeconv() 133 if (libc.global_locale.cat[LC_NUMERIC]) { in localeconv() 135 get_valid_icu_locale_name(libc.global_locale.cat[LC_NUMERIC]->name, icu_locale_name_num, in localeconv()
|
H A D | langinfo.c | 43 case LC_NUMERIC: in __nl_langinfo_l() 66 if (cat != LC_NUMERIC && *str) str = LCTRANS(str, cat, loc); in __nl_langinfo_l()
|
H A D | strtod_l.c | 135 if (l && s && l->cat[LC_NUMERIC] && l->cat[LC_NUMERIC]->flag == ICU_VALID) { in strtod_l() 164 double res = icu_strtod_l(l->cat[LC_NUMERIC]->name, tmp_s, &cur_status, &parse_pos); in strtod_l()
|
/third_party/musl/porting/uniproton/kernel/src/locale/ |
H A D | langinfo.c | 42 case LC_NUMERIC: in __nl_langinfo_l() 63 if (cat != LC_NUMERIC && *str) str = LCTRANS(str, cat, loc); in __nl_langinfo_l()
|
/third_party/musl/porting/linux/user/src/locale/ |
H A D | langinfo.c | 60 case LC_NUMERIC: in __nl_langinfo_l() 91 if (cat != LC_NUMERIC && *str) { in __nl_langinfo_l()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | locale.h | 17 #define LC_NUMERIC 1 macro 67 #define LC_NUMERIC_MASK (1<<LC_NUMERIC)
|
/third_party/musl/porting/liteos_a/kernel/src/locale/ |
H A D | langinfo.c | 42 case LC_NUMERIC: in __nl_langinfo_l() 63 if (cat != LC_NUMERIC && *str) str = LCTRANS(str, cat, loc); in __nl_langinfo_l()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | locale.h | 17 #define LC_NUMERIC 1 macro 67 #define LC_NUMERIC_MASK (1<<LC_NUMERIC)
|
/third_party/musl/porting/liteos_m/kernel/src/locale/ |
H A D | langinfo.c | 42 case LC_NUMERIC: in __nl_langinfo_l() 63 if (cat != LC_NUMERIC && *str) str = LCTRANS(str, cat, loc); in __nl_langinfo_l()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | locale.h | 19 #define LC_NUMERIC 1 macro 69 #define LC_NUMERIC_MASK (1<<LC_NUMERIC)
|
/third_party/musl/porting/linux/user/include/ |
H A D | locale.h | 34 #define LC_NUMERIC 1 macro 88 #define LC_NUMERIC_MASK (1<<LC_NUMERIC)
|
/third_party/musl/include/ |
H A D | locale.h | 19 #define LC_NUMERIC 1 macro 79 #define LC_NUMERIC_MASK (1<<LC_NUMERIC)
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | strutil_unittest.cc | 53 char* old_locale_cstr = setlocale(LC_NUMERIC, nullptr); in TEST() 58 ASSERT_TRUE(setlocale(LC_NUMERIC, "C") != nullptr); in TEST() 63 if (setlocale(LC_NUMERIC, "es_ES") == nullptr && in TEST() 64 setlocale(LC_NUMERIC, "es_ES.utf8") == nullptr) { in TEST() 74 setlocale(LC_NUMERIC, old_locale.c_str()); in TEST()
|
/third_party/ltp/ |
H A D | Makefile | 9 LC_NUMERIC=C macro 10 export LC_COLLATE LC_NUMERIC
|
/third_party/musl/libc-test/src/api/ |
H A D | locale.c | 43 C(LC_NUMERIC) in f()
|
/third_party/alsa-lib/src/ |
H A D | conf.c | 720 saved_locale = setlocale(LC_NUMERIC, NULL); in _snd_safe_strtod() 723 setlocale(LC_NUMERIC, "C"); in _snd_safe_strtod() 736 setlocale(LC_NUMERIC, locstr); in _snd_safe_strtod()
|
/third_party/mesa3d/src/freedreno/computerator/ |
H A D | main.c | 210 setlocale(LC_NUMERIC, "en_US.UTF-8"); in main()
|
/third_party/musl/libc-test/src/functionalext/locale/ |
H A D | localeconv.c | 104 * @tc.desc : set LC_NUMERIC locale as zh_CN.UTF-8, check whether the localeconv function 111 setlocale(LC_NUMERIC, "zh_CN.UTF-8"); in localeconv_0300()
|
/third_party/json/tests/src/ |
H A D | unit-regression1.cpp | 547 static_cast<void>(setlocale(LC_NUMERIC, "de_DE.UTF-8")); 552 static_cast<void>(setlocale(LC_NUMERIC, "C")); 557 static_cast<void>(setlocale(LC_NUMERIC, "de_DE.UTF-8"));
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/uclibc/ |
H A D | mod.rs | 157 pub const LC_NUMERIC: ::c_int = 1; consts
|
/third_party/python/Modules/ |
H A D | _localemodule.c | 254 /* if LC_NUMERIC is different in the C library, use saved value */ in _locale_localeconv_impl() 307 /* Numeric information: LC_NUMERIC encoding */ in _locale_localeconv_impl() 840 ADD_INT(module, LC_NUMERIC); in _locale_exec()
|
/third_party/rust/crates/libc/src/unix/linux_like/ |
H A D | mod.rs | 562 pub const LC_NUMERIC: ::c_int = 1; consts 576 pub const LC_NUMERIC: ::c_int = 1; consts 586 pub const LC_NUMERIC_MASK: ::c_int = 1 << LC_NUMERIC;
|