Searched refs:do_toupper (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | __locale | 472 _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { return do_toupper(__c); } 475 return do_toupper(__low, __high); 505 virtual char_type do_toupper(char_type) const; 506 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const; 551 _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { return do_toupper(__c); } 554 return do_toupper(__low, __high); 600 virtual char_type do_toupper(char_type __c) const; 601 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const; 625 char_type do_toupper(char_type) const override; 626 const char_type* do_toupper(char_type* __low, const char_type* __high) const override; [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | __locale | 477 _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { return do_toupper(__c); } 480 return do_toupper(__low, __high); 510 virtual char_type do_toupper(char_type) const; 511 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const; 558 _LIBCPP_HIDE_FROM_ABI char_type toupper(char_type __c) const { return do_toupper(__c); } 561 return do_toupper(__low, __high); 595 virtual char_type do_toupper(char_type __c) const; 596 virtual const char_type* do_toupper(char_type* __low, const char_type* __high) const; 620 char_type do_toupper(char_type) const override; 621 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 | 743 wchar_t ctype<wchar_t>::do_toupper(char_type c) const { return to_upper_impl(c); } in do_toupper() function in ctype 745 const wchar_t* ctype<wchar_t>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype 799 char ctype<char>::do_toupper(char_type c) const { return to_upper_impl(c); } in do_toupper() function in ctype 801 const char* ctype<char>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype 982 char ctype_byname<char>::do_toupper(char_type c) const { in do_toupper() function in ctype_byname 986 const char* ctype_byname<char>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype_byname 1160 wchar_t ctype_byname<wchar_t>::do_toupper(char_type c) const { return __locale::__towupper(c, __l_)… in do_toupper() function in ctype_byname 1162 const wchar_t* ctype_byname<wchar_t>::do_toupper(char_type* low, const char_type* high) const { in do_toupper() function in ctype_byname
|