• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/libcxx/src/

Lines Matching refs:nm

50   __libcpp_unique_locale(const char* nm) : __loc_(newlocale(LC_ALL_MASK, nm, 0)) {}
1505 codecvt<wchar_t, char, mbstate_t>::codecvt(const char* nm, size_t refs)
1507 __l(newlocale(LC_ALL_MASK, nm, 0))
1511 " failed to construct for " + string(nm));
4287 numpunct_byname<char>::numpunct_byname(const char* nm, size_t refs)
4290 __init(nm);
4293 numpunct_byname<char>::numpunct_byname(const string& nm, size_t refs)
4296 __init(nm.c_str());
4304 numpunct_byname<char>::__init(const char* nm)
4306 if (strcmp(nm, "C") != 0)
4308 __libcpp_unique_locale loc(nm);
4311 " failed to construct for " + string(nm));
4325 numpunct_byname<wchar_t>::numpunct_byname(const char* nm, size_t refs)
4328 __init(nm);
4331 numpunct_byname<wchar_t>::numpunct_byname(const string& nm, size_t refs)
4334 __init(nm.c_str());
4342 numpunct_byname<wchar_t>::__init(const char* nm)
4344 if (strcmp(nm, "C") != 0)
4346 __libcpp_unique_locale loc(nm);
4349 " failed to construct for " + string(nm));
4752 __time_get::__time_get(const char* nm)
4753 : __loc_(newlocale(LC_ALL_MASK, nm, 0))
4757 " failed to construct for " + string(nm));
4760 __time_get::__time_get(const string& nm)
4761 : __loc_(newlocale(LC_ALL_MASK, nm.c_str(), 0))
4765 " failed to construct for " + nm);
5194 explicit __time_get_temp(const char* nm)
5195 : ctype_byname<CharT>(nm, 1) {}
5196 explicit __time_get_temp(const string& nm)
5197 : ctype_byname<CharT>(nm, 1) {}
5408 __time_put::__time_put(const char* nm)
5409 : __loc_(newlocale(LC_ALL_MASK, nm, 0))
5413 " failed to construct for " + string(nm));
5416 __time_put::__time_put(const string& nm)
5417 : __loc_(newlocale(LC_ALL_MASK, nm.c_str(), 0))
5421 " failed to construct for " + nm);
5832 moneypunct_byname<char, false>::init(const char* nm)
5835 __libcpp_unique_locale loc(nm);
5838 " failed to construct for " + string(nm));
5876 moneypunct_byname<char, true>::init(const char* nm)
5879 __libcpp_unique_locale loc(nm);
5882 " failed to construct for " + string(nm));
5936 moneypunct_byname<wchar_t, false>::init(const char* nm)
5939 __libcpp_unique_locale loc(nm);
5942 " failed to construct for " + string(nm));
6001 moneypunct_byname<wchar_t, true>::init(const char* nm)
6004 __libcpp_unique_locale loc(nm);
6007 " failed to construct for " + string(nm));