HomeSort by relevance Sort by last modified time
    Searched refs:wcschr (Results 1 - 25 of 28) sorted by null

1 2

  /bionic/libc/upstream-freebsd/lib/libc/string/
wcschr.c 33 wcschr(const wchar_t *s, wchar_t c) function
  /external/expat/xmlwf/
xmltchar.h 49 # define tcschr wcschr
  /external/libcxx/include/
wchar.h 76 const wchar_t* wcschr(const wchar_t* s, wchar_t c);
77 wchar_t* wcschr( wchar_t* s, wchar_t c);
121 // Determine whether we have const-correct overloads for wcschr and friends.
137 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);}
139 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} function
141 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} function
  /external/python/cpython3/Python/
getopt.c 131 if ((ptr = wcschr(optstring, option)) == NULL) {
pathconfig.c 325 else if (wcschr(link, SEP) == NULL)
sysmodule.c     [all...]
  /external/python/cpython3/Modules/
getpath.c 348 wchar_t *delim = wcschr(prefix, DELIM);
457 wchar_t *delim = wcschr(core_config->home, DELIM);
582 if (wcschr(core_config->program_name, SEP)) {
611 wchar_t *delim = wcschr(path, DELIM);
814 wchar_t *delim = wcschr(defpath, DELIM);
856 wchar_t *delim = wcschr(defpath, DELIM);
main.c 917 const wchar_t *name_end = wcschr(s, L'=');
    [all...]
timemodule.c 785 for (outbuf = wcschr(fmt, '%');
787 outbuf = wcschr(outbuf+2, '%'))
    [all...]
  /bionic/libc/arch-x86/atom/string/
sse2-wcschr-atom.S 88 ENTRY (wcschr) function
267 END (wcschr)
  /external/e2fsprogs/intl/
printf.c 275 if (wcschr (format, '$') == NULL)
333 if (wcschr (format, '$') == NULL)
  /external/libcxx/test/std/strings/c.strings/
cwchar.pass.cpp 87 ASSERT_SAME_TYPE(wchar_t*, decltype(std::wcschr((wchar_t*)0, L' ')));
111 // set for wcschr, wcspbrk, wcsrchr, wcsstr, and wmemchr, unless the compiler is
114 ASSERT_SAME_TYPE(const wchar_t*, decltype(std::wcschr((const wchar_t*)0, L' ')));
  /external/python/cpython3/PC/
getpathp.c 847 buf = wcschr(buf, L'\0');
854 buf = wcschr(buf, L'\0');
861 buf = wcschr(buf, L'\0');
868 buf = wcschr(buf, L'\0');
876 buf = wcschr(buf, L'\0');
884 q = wcschr(p, DELIM);
895 buf = wcschr(buf, L'\0');
910 buf = wcschr(buf, L'\0');
    [all...]
launcher.c 319 if (wcschr(ip->executable, L' ') != NULL) {
810 if (wcschr(name, L'.') != NULL) {
    [all...]
pyshellext.cpp 61 length += oneLength + (wcschr(pszSource, ' ') ? 3 : 1);
  /device/linaro/bootloader/edk2/StdLib/LibC/Wchar/
Searching.c 31 /** The wcschr function locates the first occurrence of c in the wide string
35 @return The wcschr function returns a pointer to the located wide
39 wchar_t *wcschr(const wchar_t *s, wchar_t c) function
  /external/libcxx/test/std/depr/depr.c.headers/
wchar_h.pass.cpp 85 static_assert((std::is_same<decltype(wcschr((wchar_t*)0, L' ')), wchar_t*>::value), "");
109 // set for wcschr, wcspbrk, wcsrchr, wcsstr, and wmemchr, unless the compiler is
112 static_assert((std::is_same<decltype(wcschr((const wchar_t*)0, L' ')), const wchar_t*>::value), "");
  /external/pdfium/core/fpdftext/
cpdf_textpagefind.cpp 369 lpszFullString = std::wcschr(lpszFullString, chSep);
378 const wchar_t* lpchEnd = std::wcschr(lpszFullString, chSep);
  /bionic/tests/headers/posix/
wchar_h.c 81 FUNCTION(wcschr, wchar_t* (*f)(const wchar_t*, wchar_t));
  /device/linaro/bootloader/edk2/StdLib/Include/
wchar.h 107 wchar_t *wcschr (const wchar_t *S, wchar_t c);
    [all...]
  /external/webrtc/webrtc/base/
stringutils.h 91 return wcschr(s, c);
  /bionic/libc/include/
wchar.h 78 wchar_t* wcschr(const wchar_t* __s, wchar_t __wc);
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 975 if (!wcschr(*name, ':') && !wcschr(*name, '(') &
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 576 // wchar_t *wcschr(const wchar_t *wcs, wchar_t wc);
577 INTERCEPTOR(wchar_t *, wcschr, void *s, wchar_t wc, void *ps) {
579 wchar_t *res = REAL(wcschr)(s, wc, ps);
    [all...]
  /external/libchrome/base/strings/
string_util.cc 144 if (wcschr(L"diouxXeEfgGaAcspn%", *position)) {
    [all...]

Completed in 1786 milliseconds

1 2