/third_party/musl/libc-test/src/functionalext/supplement/locale/ |
H A D | wcsxfrm.c | 26 if (result != wcslen(wc)) { in wcsxfrm_0100() 27 t_error("%s wcsxfrm get result is %d are not %d\n", __func__, result, wcslen(wc)); in wcsxfrm_0100() 39 if (result != wcslen(wc)) { in wcsxfrm_0200() 40 t_error("%s wcsxfrm get result is %d are not %d\n", __func__, result, wcslen(wc)); in wcsxfrm_0200()
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_unicode.py | 11 wcslen = dll.my_wcslen 12 wcslen.argtypes = [ctypes.c_wchar_p] 14 self.assertEqual(wcslen("abc"), 3) 15 self.assertEqual(wcslen("ab\u2070"), 3) 16 self.assertRaises(ctypes.ArgumentError, wcslen, b"ab\xe4")
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | fputwc.c | 40 for (unsigned int i = 0; i < wcslen(str); i++) { in fputwc_0100() 53 fgetws(buf, wcslen(str) + 1, ffp); in fputwc_0100() 75 for (unsigned int i = 0; i < wcslen(str); i++) { in fputwc_0200() 87 fgetws(buf, wcslen(str) + 1, ffp); in fputwc_0200()
|
/third_party/musl/libc-test/src/functionalext/supplement/string/string_gtest/ |
H A D | string_wmemcmp_test.cpp | 21 EXPECT_EQ(1, wmemcmp(str, tar, wcslen(str))); in HWTEST_F() 22 EXPECT_EQ(-1, wmemcmp(tar, str, wcslen(str))); in HWTEST_F() 23 EXPECT_EQ(0, wmemcmp(str, str, wcslen(str))); in HWTEST_F()
|
H A D | string_wmemchr_test.cpp | 20 EXPECT_EQ(L'C', *wmemchr(str, target, wcslen(str))); in HWTEST_F() 25 EXPECT_EQ(nullptr, wmemchr(str, target2, wcslen(str))); in HWTEST_F()
|
/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
H A D | towctrans.c | 31 for (int i = 0; i < wcslen(str); i++) { in towctrans_0100() 48 for (int i = 0; i < wcslen(str); i++) { in towctrans_0200() 64 for (int i = 0; i < wcslen(str); i++) { in towctrans_0300()
|
/third_party/musl/libc-test/src/functional/ |
H A D | swprintf.c | 133 if (i != wcslen(int_tests[j].expect)) { in main() 135 int_tests[j].fmt, int_tests[j].i, i, wcslen(int_tests[j].expect)); in main() 143 if (i != wcslen(fp_tests[j].expect)) { in main() 145 fp_tests[j].fmt, fp_tests[j].f, i, wcslen(fp_tests[j].expect)); in main()
|
/third_party/lzma/C/Util/SfxSetup/ |
H A D | SfxSetup.c | 31 #define wcslen (size_t)lstrlenW
macro 59 unsigned len = (unsigned)wcslen(s);
in FindExt() 198 const size_t len = wcslen(path);
in RemoveDirWithSubItems() 325 pathLen = wcslen(path);
in main() 338 wchar_t *s = path + wcslen(path);
in main() 355 pathLen = wcslen(path);
in main() 473 unsigned len = (unsigned)wcslen(name);
in main() 591 if (wcslen(cmdLineParams) != 0)
in main()
|
/third_party/musl/src/string/ |
H A D | wcscspn.c | 6 if (!c[0]) return wcslen(s); in wcscspn() 7 if (!c[1]) return (s=wcschr(a=s, *c)) ? s-a : wcslen(a); in wcscspn()
|
H A D | wcslen.c | 3 size_t wcslen(const wchar_t *s) in wcslen() function
|
H A D | wcscat.c | 5 wcscpy(dest + wcslen(dest), src); in wcscat()
|
H A D | wcpcpy.c | 5 return wcscpy(d, s) + wcslen(s); in wcpcpy()
|
H A D | wcschr.c | 5 if (!c) return (wchar_t *)s + wcslen(s); in wcschr()
|
H A D | wcsdup.c | 6 size_t l = wcslen(s); in wcsdup()
|
H A D | wcsncat.c | 6 d += wcslen(d); in wcsncat()
|
/third_party/python/PC/ |
H A D | launcher.c | 392 n = wcslen(ip->executable); in _locate_pythons_for_key() 532 size_t wlen = wcslen(wanted_ver); in find_python_by_version() 537 wlen -= wcslen(L"-32"); in find_python_by_version() 541 wlen -= wcslen(L"-64"); in find_python_by_version() 544 n = wcslen(ip->version); in find_python_by_version() 626 size_t n = wcslen(wanted_ver); in locate_python() 838 child_command_size = wcslen(executable) + wcslen(cmdline) + 2; in invoke_child() 842 child_command_size = wcslen(executable) + wcslen(suffi in invoke_child() [all...] |
/third_party/skia/tools/sk_app/win/ |
H A D | main_win.cpp | 20 int size = WideCharToMultiByte(CP_UTF8, 0, str, wcslen(str), NULL, 0, NULL, NULL); in tchar_to_utf8() 22 WideCharToMultiByte(CP_UTF8, 0, str, wcslen(str), str8, size, NULL, NULL); in tchar_to_utf8()
|
/third_party/libuv/src/win/ |
H A D | fs-event.c | 70 size_t filenamelen = wcslen(filename); in uv__relative_path() 71 size_t dirlen = wcslen(dir); in uv__relative_path() 95 len = wcslen(filename); in uv__split_path() 403 str_len = wcslen(str); in file_info_cmp() 472 size = wcslen(handle->dirw) + in uv__process_fs_event_req()
|
/third_party/node/deps/uv/src/win/ |
H A D | fs-event.c | 70 size_t filenamelen = wcslen(filename); in uv__relative_path() 71 size_t dirlen = wcslen(dir); in uv__relative_path() 95 len = wcslen(filename); in uv__split_path() 413 str_len = wcslen(str); in file_info_cmp() 482 size = wcslen(handle->dirw) + in uv__process_fs_event_req()
|
/third_party/ffmpeg/libavutil/ |
H A D | wchar_filename.h | 198 const size_t len = wcslen(path_w); in add_extended_prefix() 267 len = wcslen(*ppath_w); in get_extended_win32_path()
|
/third_party/curl/lib/ |
H A D | idn.c | 77 int chars = IdnToAscii(0, in_w, (int)(wcslen(in_w) + 1), punycode, in win32_idn_to_ascii() 107 int chars = IdnToUnicode(0, in_w, (int)(wcslen(in_w) + 1), idn, in win32_ascii_to_idn()
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
H A D | wcslen.c | 3 size_t wcslen(const wchar_t *s) in wcslen() function
|
H A D | wcschr.c | 5 if (!c) return (wchar_t *)s + wcslen(s); in wcschr()
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
H A D | wcslen.c | 3 size_t wcslen(const wchar_t *s) in wcslen() function
|
H A D | wcschr.c | 5 if (!c) return (wchar_t *)s + wcslen(s); in wcschr()
|