/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | wcsrchr.c | 23 * @tc.desc : Test wcsrchr to get the position of the last occurrence of the target wide character in the wide 30 wchar_t *result = wcsrchr(ch, L'h'); in wcsrchr_0100() 32 t_error("%s wcsrchr get result is %s are not want 'hello, world'\n", __func__, result); in wcsrchr_0100() 38 * @tc.desc : wcsrchr returns result when testing multiple occurrences of target character in wide string 44 wchar_t *result = wcsrchr(ch, L'l'); in wcsrchr_0200() 46 t_error("%s wcsrchr get result is %s are not want 'ld'\n", __func__, result); in wcsrchr_0200() 52 * @tc.desc : The test wide string does not contain the target wide character is the wcsrchr result 58 wchar_t *result = wcsrchr(ch, L'a'); in wcsrchr_0300() 60 t_error("%s wcsrchr get result is %s are not want ''\n", __func__, result); in wcsrchr_0300()
|
/third_party/python/Python/ |
H A D | pathconfig.c | 447 wchar_t *q = wcsrchr(path0, SEP); in _PyPathConfig_ComputeSysPath0() 455 q = wcsrchr(path0copy, SEP); in _PyPathConfig_ComputeSysPath0() 480 p = wcsrchr(path0, SEP); in _PyPathConfig_ComputeSysPath0() 482 q = wcsrchr(p ? p : path0, '/'); in _PyPathConfig_ComputeSysPath0() 499 p = wcsrchr(path0, SEP); in _PyPathConfig_ComputeSysPath0()
|
H A D | dynload_win.c | 188 wchar_t *p = wcsrchr(py3path, L'\\');
|
/third_party/musl/src/string/ |
H A D | wcsrchr.c | 3 wchar_t *wcsrchr(const wchar_t *s, wchar_t c) in wcsrchr() function
|
/third_party/skia/third_party/externals/expat/expat/xmlwf/ |
H A D | xmltchar.h | 51 # define tcsrchr wcsrchr
|
/third_party/ffmpeg/compat/ |
H A D | w32dlfcn.h | 82 new_path = wcsrchr(path, '\\'); in win32_dlopen()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | unicode.h | 63 #define WSTRRCHR(FILENAME, STR) wcsrchr((const W_CHAR*)FILENAME, TO_W_CHAR(STR))
|
/third_party/python/PC/ |
H A D | launcher.c | 289 check = wcsrchr(ip->version, L'-'); in _locate_pythons_for_key() 381 const wchar_t *name = wcsrchr(ip->executable, L'\\'); in _locate_pythons_for_key() 704 p = wcsrchr(wrapped_script_path, L'.'); in locate_wrapped_script() 1813 p = wcsrchr(venv_cfg_path, L'\\'); in process() 1824 p = wcsrchr(venv_cfg_path, L'\\'); in process() 1841 p = wcsrchr(launcher_ini_path, L'\\'); in process()
|
H A D | python_uwp.cpp | 196 const wchar_t *p = wcsrchr(argv[0], L'\\'); in wmain()
|
/third_party/musl/libc-test/src/api/ |
H A D | wchar.c | 59 {wchar_t*(*p)(const wchar_t*,wchar_t) = wcsrchr;} in f()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | wchar.h | 65 wchar_t *wcsrchr (const wchar_t *, wchar_t);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | wchar.h | 65 wchar_t *wcsrchr (const wchar_t *, wchar_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | wchar.h | 65 wchar_t *wcsrchr (const wchar_t *, wchar_t);
|
/third_party/musl/include/ |
H A D | wchar.h | 65 wchar_t *wcsrchr (const wchar_t *, wchar_t);
|
/third_party/libuv/src/win/ |
H A D | process.c | 198 if (cwd_len && wcsrchr(L"\\/:", result_pos[-1]) == NULL) { in search_path_join_test() 208 if (dir_len && wcsrchr(L"\\/:", result_pos[-1]) == NULL) { in search_path_join_test()
|
/third_party/node/deps/uv/src/win/ |
H A D | process.c | 208 if (cwd_len && wcsrchr(L"\\/:", result_pos[-1]) == NULL) { in search_path_join_test() 218 if (dir_len && wcsrchr(L"\\/:", result_pos[-1]) == NULL) { in search_path_join_test()
|
/third_party/python/Modules/ |
H A D | getpath.c | 451 wchar_t *s = wcsrchr(path, SEP);
|
H A D | posixmodule.c | 2057 const wchar_t *fileExtension = wcsrchr(path, '.'); in win32_xstat_impl()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 351 extern wchar_t *wcsrchr (const wchar_t *__wcs, wchar_t __wc) 14075 using ::wcsrchr; 14089 wcsrchr(wchar_t* __p, wchar_t __c) 14090 { return wcsrchr(const_cast<const wchar_t*>(__p), __c); } [all...] |