Home
last modified time | relevance | path

Searched refs:__nm (Results 1 – 3 of 3) sorted by relevance

/external/libcxx/include/
Dlocale1538 string_type __nm = _VSTD::move(__tmp);
1540 string_type __nm = __v ? __np.truename() : __np.falsename();
1542 for (typename string_type::iterator __i = __nm.begin(); __i != __nm.end(); ++__i, ++__s)
2512 __time_get(const char* __nm);
2513 __time_get(const string& __nm);
2532 explicit __time_get_storage(const char* __nm);
2533 explicit __time_get_storage(const string& __nm);
2556 explicit time_get_byname(const char* __nm, size_t __refs = 0)
2558 __time_get_storage<_CharT>(__nm) {}
2560 explicit time_get_byname(const string& __nm, size_t __refs = 0)
[all …]
D__locale1162 explicit codecvt_byname(const char* __nm, size_t __refs = 0)
1163 : codecvt<_InternT, _ExternT, _StateT>(__nm, __refs) {}
1165 explicit codecvt_byname(const string& __nm, size_t __refs = 0)
1166 : codecvt<_InternT, _ExternT, _StateT>(__nm.c_str(), __refs) {}
1441 explicit numpunct_byname(const char* __nm, size_t __refs = 0);
1442 explicit numpunct_byname(const string& __nm, size_t __refs = 0);
1459 explicit numpunct_byname(const char* __nm, size_t __refs = 0);
1460 explicit numpunct_byname(const string& __nm, size_t __refs = 0);
/external/libcxx/src/
Dlocale.cpp5248 __time_get_storage<char>::__time_get_storage(const char* __nm) in __time_get_storage() argument
5249 : __time_get(__nm) in __time_get_storage()
5251 const __time_get_temp<char> ct(__nm); in __time_get_storage()
5256 __time_get_storage<char>::__time_get_storage(const string& __nm) in __time_get_storage() argument
5257 : __time_get(__nm) in __time_get_storage()
5259 const __time_get_temp<char> ct(__nm); in __time_get_storage()
5264 __time_get_storage<wchar_t>::__time_get_storage(const char* __nm) in __time_get_storage() argument
5265 : __time_get(__nm) in __time_get_storage()
5267 const __time_get_temp<wchar_t> ct(__nm); in __time_get_storage()
5272 __time_get_storage<wchar_t>::__time_get_storage(const string& __nm) in __time_get_storage() argument
[all …]