Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A D__locale478 _LIBCPP_HIDE_FROM_ABI char_type tolower(char_type __c) const { return do_tolower(__c); }
481 return do_tolower(__low, __high);
507 virtual char_type do_tolower(char_type) const;
508 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
557 _LIBCPP_HIDE_FROM_ABI char_type tolower(char_type __c) const { return do_tolower(__c); }
560 return do_tolower(__low, __high);
602 virtual char_type do_tolower(char_type __c) const;
603 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
627 char_type do_tolower(char_type) const override;
628 const char_type* do_tolower(char_type* __low, const char_type* __high) const override;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A D__locale483 _LIBCPP_HIDE_FROM_ABI char_type tolower(char_type __c) const { return do_tolower(__c); }
486 return do_tolower(__low, __high);
512 virtual char_type do_tolower(char_type) const;
513 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
564 _LIBCPP_HIDE_FROM_ABI char_type tolower(char_type __c) const { return do_tolower(__c); }
567 return do_tolower(__low, __high);
597 virtual char_type do_tolower(char_type __c) const;
598 virtual const char_type* do_tolower(char_type* __low, const char_type* __high) const;
622 char_type do_tolower(char_type) const override;
623 const char_type* do_tolower(char_type* __low, const char_type* __high) const override;
[all …]
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp751 wchar_t ctype<wchar_t>::do_tolower(char_type c) const { return to_lower_impl(c); } in do_tolower() function in ctype
753 const wchar_t* ctype<wchar_t>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype
807 char ctype<char>::do_tolower(char_type c) const { return to_lower_impl(c); } in do_tolower() function in ctype
809 const char* ctype<char>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype
992 char ctype_byname<char>::do_tolower(char_type c) const { in do_tolower() function in ctype_byname
996 const char* ctype_byname<char>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype_byname
1168 wchar_t ctype_byname<wchar_t>::do_tolower(char_type c) const { return __locale::__towlower(c, __l_)… in do_tolower() function in ctype_byname
1170 const wchar_t* ctype_byname<wchar_t>::do_tolower(char_type* low, const char_type* high) const { in do_tolower() function in ctype_byname