Searched refs:do_toupper (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __locale | 474 _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { return do_toupper(__c); } 477 return do_toupper(__low, __high); 507 virtual char_type do_toupper(char_type) const; 508 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const; 553 _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { return do_toupper(__c); } 556 return do_toupper(__low, __high); 602 virtual char_type do_toupper(char_type __c) const; 603 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const; 627 char_type do_toupper(char_type) const override; 628 const char_type* do_toupper(char_type* __low, const char_type* __high) const override; [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | locale.cpp | 733 wchar_t ctype<wchar_t>::do_toupper(char_type c) const { in do_toupper() function in ctype 743 const wchar_t* ctype<wchar_t>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype 817 char ctype<char>::do_toupper(char_type c) const { in do_toupper() function in ctype 829 const char* ctype<char>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype 1066 char ctype_byname<char>::do_toupper(char_type c) const { in do_toupper() function in ctype_byname 1070 const char* ctype_byname<char>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype_byname 1244 wchar_t ctype_byname<wchar_t>::do_toupper(char_type c) const { return towupper_l(c, __l_); } in do_toupper() function in ctype_byname 1246 const wchar_t* ctype_byname<wchar_t>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype_byname
|