Lines Matching refs:locale_name

293 std::locale create_basic_parsing(std::locale const &in,std::string const &locale_name)  in create_basic_parsing()  argument
295 std::locale tmp = std::locale(in,new std::numpunct_byname<CharType>(locale_name.c_str())); in create_basic_parsing()
296 tmp = std::locale(tmp,new std::moneypunct_byname<CharType,true>(locale_name.c_str())); in create_basic_parsing()
297 tmp = std::locale(tmp,new std::moneypunct_byname<CharType,false>(locale_name.c_str())); in create_basic_parsing()
298 tmp = std::locale(tmp,new std::ctype_byname<CharType>(locale_name.c_str())); in create_basic_parsing()
303 std::locale create_basic_formatting(std::locale const &in,std::string const &locale_name) in create_basic_formatting() argument
305 std::locale tmp = create_basic_parsing<CharType>(in,locale_name); in create_basic_formatting()
306 std::locale base(locale_name.c_str()); in create_basic_formatting()
313 std::string const &locale_name, in create_formatting() argument
321 std::locale base = std::locale(locale_name.c_str()); in create_formatting()
330 std::locale base = std::locale(locale_name.c_str()); in create_formatting()
333 tmp = std::locale(tmp,new utf8_numpunct(locale_name.c_str())); in create_formatting()
334 tmp = std::locale(tmp,new utf8_moneypunct<true>(locale_name.c_str())); in create_formatting()
335 tmp = std::locale(tmp,new utf8_moneypunct<false>(locale_name.c_str())); in create_formatting()
339 std::locale base = std::locale(locale_name.c_str()); in create_formatting()
349 std::locale tmp = create_basic_formatting<char>(in,locale_name); in create_formatting()
356 std::locale tmp = create_basic_formatting<wchar_t>(in,locale_name); in create_formatting()
363 std::locale tmp = create_basic_formatting<char16_t>(in,locale_name); in create_formatting()
371 std::locale tmp = create_basic_formatting<char32_t>(in,locale_name); in create_formatting()
382 std::string const &locale_name, in create_parsing() argument
392 base = std::locale(base,new std::numpunct_byname<wchar_t>(locale_name.c_str())); in create_parsing()
393 … base = std::locale(base,new std::moneypunct_byname<wchar_t,true>(locale_name.c_str())); in create_parsing()
394 … base = std::locale(base,new std::moneypunct_byname<wchar_t,false>(locale_name.c_str())); in create_parsing()
402 std::locale tmp = std::locale(in,new utf8_numpunct(locale_name.c_str())); in create_parsing()
403 tmp = std::locale(tmp,new utf8_moneypunct<true>(locale_name.c_str())); in create_parsing()
404 tmp = std::locale(tmp,new utf8_moneypunct<false>(locale_name.c_str())); in create_parsing()
408 std::locale base = std::locale(locale_name.c_str()); in create_parsing()
417 std::locale tmp = create_basic_parsing<char>(in,locale_name); in create_parsing()
424 std::locale tmp = create_basic_parsing<wchar_t>(in,locale_name); in create_parsing()
431 std::locale tmp = create_basic_parsing<char16_t>(in,locale_name); in create_parsing()
439 std::locale tmp = create_basic_parsing<char32_t>(in,locale_name); in create_parsing()