| /third_party/musl/libc-test/src/functionalext/supplement/string/ |
| H A D | wcscmp.c | 28 wchar_t str1[] = L"test wcscmp"; in wcscmp_0100() 29 wchar_t str2[] = L"test wcscmp"; in wcscmp_0100() 30 if (wcscmp(str1, str2)) { in wcscmp_0100() 44 if (wcscmp(str1, str2) >= 0) { in wcscmp_0200() 58 if (wcscmp(str1, str2) <= 0) { in wcscmp_0300() 72 if (wcscmp(str1, str2) >= 0) { in wcscmp_0400() 75 if (wcscmp(str2, str1) <= 0) { in wcscmp_0400() 90 if (wcscmp(str1, str3) >= 0) { in wcscmp_0500() 93 if (wcscmp(str3, str1) <= 0) { in wcscmp_0500() 96 if (wcscmp(str in wcscmp_0500() [all...] |
| H A D | wcsncat.c | 31 if (wcscmp(dst, result) != 0) { in wcsncat_0100() 34 if (wcscmp(dst, L"hello") != 0) { in wcsncat_0100() 48 if (wcscmp(dst, result) != 0) { in wcsncat_0200() 51 if (wcscmp(dst, L"") != 0) { in wcsncat_0200() 66 if (wcscmp(dst, result) != 0) { in wcsncat_0300() 69 if (wcscmp(dst, L"hello, world!") != 0) { in wcsncat_0300()
|
| H A D | wcpncpy.c | 32 if (wcscmp(result, dst + src_len) != 0) { in wcpncpy_0100() 35 if (wcscmp(src, dst) != 0) { in wcpncpy_0100() 51 if (wcscmp(result, dst + 2) != 0) { in wcpncpy_0200() 54 if (wcscmp(dst, L"So") != 0) { in wcpncpy_0200() 70 if (wcscmp(result, dst + src_len) != 0) { in wcpncpy_0300() 73 if (wcscmp(src, dst) != 0) { in wcpncpy_0300()
|
| H A D | wcspbrk.c | 45 if (wcscmp(result, s) != 0) { in wcspbrk_0200() 59 if (wcscmp(result, s + 2) != 0) { in wcspbrk_0300() 73 if (wcscmp(result, s + 5) != 0) { in wcspbrk_0400()
|
| H A D | wcstok.c | 42 if (wcscmp(result[i], compare[i]) != 0) { in wcstok_0100() 59 if (wcscmp(result, L"parrot") != 0) { in wcstok_0200() 62 if (wcscmp(ptr, L"owl.sparrow,pigeon,crow") != 0) { in wcstok_0200()
|
| H A D | wcpcpy.c | 31 if (wcscmp(result, dst + 13) != 0) { in wcpcpy_0100() 34 if (wcscmp(src, dst) != 0) { in wcpcpy_0100()
|
| H A D | wcscpy.c | 39 if (wcscmp(wcs, des)) { in wcscpy_0100() 54 if (wcscmp(wcs, des)) { in wcscpy_0200()
|
| H A D | wcsrchr.c | 31 if (wcscmp(result, ch) != 0) { in wcsrchr_0100() 45 if (wcscmp(result, ch + 10) != 0) { in wcsrchr_0200()
|
| H A D | wcscat.c | 39 if (wcscmp(dest, L"wcscat test")) { in wcscat_0100()
|
| /third_party/musl/libc-test/src/functionalext/locale/ |
| H A D | wcstod_l.c | 119 if (wcscmp(end, str1)) { in wcstod_l_0200() 138 if (wcscmp(end, str1)) { in wcstod_l_0300() 157 if (wcscmp(end, str1)) { in wcstod_l_0400() 176 if (wcscmp(end, str1)) { in wcstod_l_0500() 195 if (wcscmp(end, str1)) { in wcstod_l_0600() 244 if (wcscmp(end, str1)) { in wcstod_l_0900() 313 if (wcscmp(end, str1)) { in wcstod_l_1300() 348 if (wcscmp(end, str1)) { in wcstod_l_1500() 367 if (wcscmp(end, str1)) { in wcstod_l_1600() 387 if (wcscmp(en in wcstod_l_1700() [all...] |
| /third_party/python/Python/ |
| H A D | getopt.c | 74 else if (wcscmp(argv[_PyOS_optind], L"/?") == 0) { in _PyOS_GetOpt() 84 else if (wcscmp(argv[_PyOS_optind], L"--") == 0) { in _PyOS_GetOpt() 89 else if (wcscmp(argv[_PyOS_optind], L"--help") == 0) { in _PyOS_GetOpt() 94 else if (wcscmp(argv[_PyOS_optind], L"--version") == 0) { in _PyOS_GetOpt() 116 if (!wcscmp(opt->name, opt_ptr)) in _PyOS_GetOpt()
|
| /third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
| H A D | towctrans.c | 34 if (wcscmp(str, L"abcd")) { in towctrans_0100() 51 if (wcscmp(str, L"ABCD")) { in towctrans_0200() 67 if (wcscmp(str, L"Abcd")) { in towctrans_0300()
|
| /third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
| H A D | swscanf.c | 42 if (wcscmp(tmp, L"swscanf")) { in swscanf_0100() 63 if (wcscmp(tmp1, L"swscanf")) { in swscanf_0200() 66 if (wcscmp(tmp2, L"123")) { in swscanf_0200()
|
| H A D | vswscanf.c | 48 if (wcscmp(symbol, str) != 0) { in vswscanf_0100() 67 if (wcscmp(str, L"ABC") != 0) { in vswscanf_0200() 70 if (wcscmp(strs, L"DEF") != 0) { in vswscanf_0200()
|
| H A D | vswprintf.c | 39 if (wcscmp(buffer, L"1")) { in vswprintf_0100() 79 if (wcscmp(buffer, L"vswprintf test")) { in vswprintf_0300()
|
| /third_party/musl/libc-test/src/functional/ |
| H A D | swprintf.c | 19 !wcscmp((s),(x)) || \ 137 if (wcscmp(b, int_tests[j].expect) != 0) in main() 147 if (wcscmp(b, fp_tests[j].expect) != 0) in main()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
| H A D | ndis_events.c | 340 if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 348 if (wcscmp(events->adapter_desc, vt.bstrVal) != 0) { in ndis_events_indicate() 359 if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 362 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 365 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 368 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 371 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate()
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
| H A D | ndis_events.c | 340 if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 348 if (wcscmp(events->adapter_desc, vt.bstrVal) != 0) { in ndis_events_indicate() 359 if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 362 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 365 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 368 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate() 371 } else if (wcscmp(vtClass.bstrVal, in ndis_events_indicate()
|
| /third_party/lzma/CPP/Common/ |
| H A D | MyString.h | 226 #define MyStringCompare(s1, s2) wcscmp(s1, s2)
711 int Compare(const wchar_t *s) const { return wcscmp(_chars, s); }
in Compare() 801 inline bool operator==(const UString &s1, const UString &s2) { return s1.Len() == s2.Len() && wcscmp(s1, s2) == 0; }
in operator ==() 802 inline bool operator==(const UString &s1, const wchar_t *s2) { return wcscmp(s1, s2) == 0; }
in operator ==() 803 inline bool operator==(const wchar_t *s1, const UString &s2) { return wcscmp(s1, s2) == 0; }
in operator ==() 805 inline bool operator!=(const UString &s1, const UString &s2) { return s1.Len() != s2.Len() || wcscmp(s1, s2) != 0; }
in operator !=() 806 inline bool operator!=(const UString &s1, const wchar_t *s2) { return wcscmp(s1, s2) != 0; }
in operator !=() 807 inline bool operator!=(const wchar_t *s1, const UString &s2) { return wcscmp(s1, s2) != 0; }
in operator !=() 885 int Compare(const wchar_t *s) const { return wcscmp(_chars, s); }
in Compare()
|
| /third_party/musl/src/string/ |
| H A D | wcscmp.c | 3 int wcscmp(const wchar_t *l, const wchar_t *r) in wcscmp() function
|
| /third_party/musl/src/locale/ |
| H A D | wcscoll.c | 8 return wcscmp(l, r); in __wcscoll_l()
|
| /third_party/musl/libc-test/src/regression/ |
| H A D | mbsrtowcs-overflow.c | 18 if (wcscmp(ws, L"abcdX") != 0) in main()
|
| /third_party/musl/libc-test/src/functionalext/supplement/locale/ |
| H A D | wcsxfrm.c | 29 if (wcscmp(src, wc) != 0) { in wcsxfrm_0100()
|
| /third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
| H A D | wcstoumax.c | 45 if (wcscmp(end, L"x") != 0) { in wcstoumax_0100()
|
| H A D | wcstoimax.c | 45 if (wcscmp(end, L"x") != 0) { in wcstoimax_0100()
|