Searched refs:__nm (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | locale | 1315 string_type __nm = __v ? __np.truename() : __np.falsename(); 1316 for (typename string_type::iterator __i = __nm.begin(); __i != __nm.end(); ++__i, ++__s) 2009 __time_get(const char* __nm); 2010 __time_get(const string& __nm); 2027 explicit __time_get_storage(const char* __nm); 2028 explicit __time_get_storage(const string& __nm); 2076 _LIBCPP_HIDE_FROM_ABI explicit time_get_byname(const char* __nm, size_t __refs = 0) 2077 : time_get<_CharT, _InputIterator>(__refs), __time_get_storage<_CharT>(__nm) {} 2078 _LIBCPP_HIDE_FROM_ABI explicit time_get_byname(const string& __nm, size_t __refs = 0) 2079 : time_get<_CharT, _InputIterator>(__refs), __time_get_storage<_CharT>(__nm) {} [all …]
|
H A D | __locale | 1236 _LIBCPP_HIDE_FROM_ABI explicit codecvt_byname(const char* __nm, size_t __refs = 0) 1237 : codecvt<_InternT, _ExternT, _StateT>(__nm, __refs) {} 1238 _LIBCPP_HIDE_FROM_ABI explicit codecvt_byname(const string& __nm, size_t __refs = 0) 1239 : codecvt<_InternT, _ExternT, _StateT>(__nm.c_str(), __refs) {} 1483 explicit numpunct_byname(const char* __nm, size_t __refs = 0); 1484 explicit numpunct_byname(const string& __nm, size_t __refs = 0); 1500 explicit numpunct_byname(const char* __nm, size_t __refs = 0); 1501 explicit numpunct_byname(const string& __nm, size_t __refs = 0);
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | locale.cpp | 4834 __time_get_storage<char>::__time_get_storage(const char* __nm) : __time_get(__nm) { in __time_get_storage() argument 4835 const __time_get_temp<char> ct(__nm); in __time_get_storage() 4840 __time_get_storage<char>::__time_get_storage(const string& __nm) : __time_get(__nm) { in __time_get_storage() argument 4841 const __time_get_temp<char> ct(__nm); in __time_get_storage() 4847 __time_get_storage<wchar_t>::__time_get_storage(const char* __nm) : __time_get(__nm) { in __time_get_storage() argument 4848 const __time_get_temp<wchar_t> ct(__nm); in __time_get_storage() 4853 __time_get_storage<wchar_t>::__time_get_storage(const string& __nm) : __time_get(__nm) { in __time_get_storage() argument 4854 const __time_get_temp<wchar_t> ct(__nm); in __time_get_storage()
|