Searched refs:c_locale (Results 1 - 4 of 4) sorted by relevance
/third_party/libinput/src/ |
H A D | util-strings.h | 217 locale_t c_locale; in safe_atod() local 240 c_locale = newlocale(LC_NUMERIC_MASK, "C", (locale_t)0); in safe_atod() 241 if (c_locale == (locale_t)0) in safe_atod() 245 v = strtod_l(str, &endptr, c_locale); in safe_atod() 246 freelocale(c_locale); in safe_atod()
|
/third_party/alsa-lib/src/ |
H A D | conf.c | 707 locale_t saved_locale, c_locale; in _snd_safe_strtod() local 717 c_locale = newlocale(LC_NUMERIC_MASK, "C", 0); in _snd_safe_strtod() 718 saved_locale = uselocale(c_locale); in _snd_safe_strtod() 730 if (c_locale != (locale_t)0) { in _snd_safe_strtod() 732 freelocale(c_locale); in _snd_safe_strtod()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | core-util.c | 2511 static locale_t c_locale = NULL; variable 2514 freelocale(c_locale); in c_locale_destroy() 2536 if ((c_locale = newlocale(LC_ALL_MASK, "C", NULL))) in pa_atod() 2541 if (c_locale) { in pa_atod() 2543 f = strtod_l(s, &x, c_locale); in pa_atod()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | parser_impl.cc | 753 std::locale c_locale("C"); in IsValidIdentifier() 754 if (!std::isalpha(str[0], c_locale)) { in IsValidIdentifier() 758 if ((ch != '_') && !std::isalnum(ch, c_locale)) { in IsValidIdentifier()
|
Completed in 15 milliseconds