/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | wchar.h | 75 const wchar_t* wcschr(const wchar_t* s, wchar_t c); 76 wchar_t* wcschr( wchar_t* s, wchar_t c); 132 // Determine whether we have const-correct overloads for wcschr and friends. 148 return (wchar_t*)wcschr(__s, __c); 150 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) { 153 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wcschr(wchar_t* __s, wchar_t __c) { 149 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} wcschr() function 151 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} wcschr() function
|
H A D | cwchar | 70 const wchar_t* wcschr(const wchar_t* s, wchar_t c); 71 wchar_t* wcschr( wchar_t* s, wchar_t c); 169 using ::wcschr _LIBCPP_USING_IF_EXISTS;
|
/freebsd/lib/libc/i386/string/ |
H A D | wcschr.S | 34 ENTRY(wcschr) 75 END(wcschr)
|
H A D | Makefile.inc | 16 wcschr.S \
|
/freebsd/contrib/libedit/ |
H A D | parse.c | 107 ptr = wcschr(argv[0], L':'); in el_wparse() 189 h = wcschr(hex, *p++); in parse__escape()
|
H A D | filecomplete.c | 620 if (wcschr(word_break, ctemp[-1])) in find_word_to_complete() 622 if (special_prefixes && wcschr(special_prefixes, ctemp[-1])) in find_word_to_complete()
|
H A D | tokenizer.c | 81 #define Strchr(s, c) wcschr(s, c)
|
H A D | chared.c | 207 return iswalnum(p) || wcschr(L"*?_-.[]~=", p) != NULL; in ce__isword()
|
/freebsd/lib/libc/string/ |
H A D | wcschr.c | 32 wcschr(const wchar_t *s, wchar_t c) in wcschr() function
|
H A D | Makefile.inc | 24 wcschr.c wcscmp.c wcscoll.c wcscpy.c wcscspn.c wcsdup.c \ 98 wmemchr.3 wcschr.3 \
|
H A D | Symbol.map | 50 wcschr;
|
/freebsd/contrib/expat/xmlwf/ |
H A D | xmltchar.h | 50 # define tcschr wcschr
|
/freebsd/contrib/nvi/common/ |
H A D | multibyte.h | 56 #define STRCHR wcschr
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cwchar.inc | 40 using ::wcschr _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cwchar.cppm |
|
H A D | cwchar.inc | 40 using std::wcschr _LIBCPP_USING_IF_EXISTS;
|
/freebsd/usr.bin/look/ |
H A D | look.c | 180 if (termchar != L'\0' && (writep = wcschr(key, termchar)) != NULL) in prepkey()
|
/freebsd/contrib/libc-vis/ |
H A D | vis.c | 194 wcschr(L"#$@[\\]^`{|}~", c) != NULL)) { in do_mvis() 309 iswextra = wcschr(extra, c) != NULL; in do_svis()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_pathmatch.c | 451 for ( ; s != NULL; s = wcschr(s, L'/')) { in __archive_pathmatch_w()
|
H A D | archive_util.c | 320 xp = wcschr(template, L'X'); in __archive_mktempx()
|
/freebsd/include/ |
H A D | wchar.h | 150 wchar_t *wcschr(const wchar_t *, wchar_t) __pure;
|
/freebsd/usr.bin/column/ |
H A D | column.c | 284 if (!(p = wcschr(p, L'\n'))) { in input()
|
/freebsd/usr.bin/fmt/ |
H A D | fmt.c | 620 spaces = wcschr(sentence_enders, word[length - 1]) ? 2 : 1; in output_word()
|
/freebsd/contrib/bsddialog/lib/ |
H A D | lib_util.c | 479 att = wcschr(L"nbBdDkKrRsSuU01234567", wtext[2]) == NULL ? false : true; in is_wtext_attr() 537 if (wcschr(L"\t\n ", wtext[i]) != NULL) { in text_properties() 1204 if (wcschr(L"\n\t ", string[j]) != NULL || string[j] == L'\0') { in print_textpad()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 1673 INTERCEPTOR(wchar_t *, wcschr, void *s, wchar_t wc, void *ps) { in INTERCEPTOR() argument 1675 wchar_t *res = REAL(wcschr)(s, wc, ps); in INTERCEPTOR() 1864 INTERCEPT_FUNCTION(wcschr); in InitializeInterceptors()
|