Lines Matching defs:__c
141 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {
142 return (wchar_t*)wcschr(__s, __c);
144 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {
145 return __libcpp_wcschr(__s, __c);
147 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcschr(wchar_t* __s, wchar_t __c) {
148 return __libcpp_wcschr(__s, __c);
162 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {
163 return (wchar_t*)wcsrchr(__s, __c);
165 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {
166 return __libcpp_wcsrchr(__s, __c);
168 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcsrchr(wchar_t* __s, wchar_t __c) {
169 return __libcpp_wcsrchr(__s, __c);
183 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {
184 return (wchar_t*)wmemchr(__s, __c, __n);
187 wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {
188 return __libcpp_wmemchr(__s, __c, __n);
190 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wmemchr(wchar_t* __s, wchar_t __c, size_t __n) {
191 return __libcpp_wmemchr(__s, __c, __n);