Home
last modified time | relevance | path

Searched refs:ctype_byname (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp233 install(new ctype_byname<char>(name_)); in __imp()
235 install(new ctype_byname<wchar_t>(name_)); in __imp()
304 install(new ctype_byname<char>(name)); in __imp()
306 install(new ctype_byname<wchar_t>(name)); in __imp()
1044 ctype_byname<char>::ctype_byname(const char* name, size_t refs) in ctype_byname() function in ctype_byname
1054 ctype_byname<char>::ctype_byname(const string& name, size_t refs) in ctype_byname() function in ctype_byname
1064 ctype_byname<char>::~ctype_byname() { freelocale(__l_); } in ~ctype_byname()
1066 char ctype_byname<char>::do_toupper(char_type c) const { in do_toupper()
1070 const char* ctype_byname<char>::do_toupper(char_type* low, const char_type* high) const { in do_toupper()
1076 char ctype_byname<char>::do_tolower(char_type c) const { in do_tolower()
[all …]
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dlocale.inc39 using std::ctype_byname;
H A Dlocale.cppm
/freebsd/contrib/llvm-project/libcxx/include/
H A D__locale612 // template <class CharT> class ctype_byname;
615 class _LIBCPP_TEMPLATE_VIS ctype_byname;
618 class _LIBCPP_EXPORTED_FROM_ABI ctype_byname<char> : public ctype<char> {
622 explicit ctype_byname(const char*, size_t = 0);
623 explicit ctype_byname(const string&, size_t = 0);
626 ~ctype_byname() override;
635 class _LIBCPP_EXPORTED_FROM_ABI ctype_byname<wchar_t> : public ctype<wchar_t> {
639 explicit ctype_byname(const char*, size_t = 0);
640 explicit ctype_byname(const string&, size_t = 0);
643 ~ctype_byname() override;
H A Dlocale150 template <class charT> class ctype_byname;
151 template <> class ctype_byname<char>; // specialization
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc998 SYMBOL(ctype_byname, std::, <locale>)