Searched refs:do_tolower (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __locale | 480 _LIBCPP_HIDE_FROM_ABI char_type tolower(char_type __c) const { return do_tolower(__c); } 483 return do_tolower(__low, __high); 509 virtual char_type do_tolower(char_type) const; 510 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const; 559 _LIBCPP_HIDE_FROM_ABI char_type tolower(char_type __c) const { return do_tolower(__c); } 562 return do_tolower(__low, __high); 604 virtual char_type do_tolower(char_type __c) const; 605 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const; 629 char_type do_tolower(char_type) const override; 630 const char_type* do_tolower(char_type* __low, const char_type* __high) const override; [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | locale.cpp | 755 wchar_t ctype<wchar_t>::do_tolower(char_type c) const { in do_tolower() function in ctype 765 const wchar_t* ctype<wchar_t>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype 843 char ctype<char>::do_tolower(char_type c) const { in do_tolower() function in ctype 855 const char* ctype<char>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype 1076 char ctype_byname<char>::do_tolower(char_type c) const { in do_tolower() function in ctype_byname 1080 const char* ctype_byname<char>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype_byname 1252 wchar_t ctype_byname<wchar_t>::do_tolower(char_type c) const { return towlower_l(c, __l_); } in do_tolower() function in ctype_byname 1254 const wchar_t* ctype_byname<wchar_t>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype_byname
|