Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/
H A Dtime.h562 class _LIBCPP_EXPORTED_FROM_ABI __time_get {
566 __time_get(const char* __nm);
567 __time_get(const string& __nm);
568 ~__time_get();
572 class __time_get_storage : public __time_get {
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp4356 __time_get::__time_get(const char* nm) : __loc_(__locale::__newlocale(_LIBCPP_ALL_MASK, nm, 0)) { in __time_get() function in __time_get
4361 __time_get::__time_get(const string& nm) : __loc_(__locale::__newlocale(_LIBCPP_ALL_MASK, nm.c_str(… in __time_get() function in __time_get
4366 __time_get::~__time_get() { __locale::__freelocale(__loc_); } in ~__time_get()
4750 __time_get_storage<char>::__time_get_storage(const char* __nm) : __time_get(__nm) { in __time_get_storage()
4756 __time_get_storage<char>::__time_get_storage(const string& __nm) : __time_get(__nm) { in __time_get_storage()
4763 __time_get_storage<wchar_t>::__time_get_storage(const char* __nm) : __time_get(__nm) { in __time_get_storage()
4769 __time_get_storage<wchar_t>::__time_get_storage(const string& __nm) : __time_get(__nm) { in __time_get_storage()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dlocale2005 class _LIBCPP_EXPORTED_FROM_ABI __time_get {
2009 __time_get(const char* __nm);
2010 __time_get(const string& __nm);
2011 ~__time_get();
2015 class _LIBCPP_TEMPLATE_VIS __time_get_storage : public __time_get {