/third_party/musl/libc-test/src/functional/ |
H A D | wcsstr.c | 6 wchar_t *q = wcsstr(p, sub); \ 8 t_error("wcsstr(%s,%s) returned str+%d, wanted 0\n", #s, #sub, q-p); \ 13 wchar_t *q = wcsstr(p, sub); \ 15 t_error("wcsstr(%s,%s) returned 0, wanted str+%d\n", #s, #sub, n); \ 17 t_error("wcsstr(%s,%s) returned str+%d, wanted str+%d\n", #s, #sub, q-p, n); \
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | cryptlib.c | 88 if (wcsstr(name, L"Service-0x")) in OPENSSL_isservice() 92 if (!wcsstr(name, L"WinSta0")) in OPENSSL_isservice()
|
/third_party/openssl/crypto/ |
H A D | cryptlib.c | 88 if (wcsstr(name, L"Service-0x")) in OPENSSL_isservice() 92 if (!wcsstr(name, L"WinSta0")) in OPENSSL_isservice()
|
/third_party/musl/src/string/ |
H A D | wcswcs.c | 5 return wcsstr(haystack, needle); in wcswcs()
|
H A D | wcsstr.c | 93 wchar_t *wcsstr(const wchar_t *restrict h, const wchar_t *restrict n) in wcsstr() function
|
/third_party/musl/libc-test/src/regression/ |
H A D | wcsstr-false-negative.c | 2 // wcsstr (strstr and memmem) failed to match repetitive needles in some cases 10 wchar_t *p = wcsstr(haystack, needle); in main() 12 t_error("wcsstr(L\"%S\",L\"%S\") failed: got %p, want %p\n", haystack, needle, p, haystack+8); in main()
|
/third_party/openssl/ohos_lite/crypto/ |
H A D | cryptlib.c | 243 if (wcsstr(name, L"Service-0x")) in OPENSSL_isservice() 247 if (!wcsstr(name, L"WinSta0")) in OPENSSL_isservice()
|
/third_party/vulkan-loader/tests/framework/shim/ |
H A D | windows_shim.cpp | 85 if (wcsstr(reg_info->value_name, L"DriverName") != nullptr) { // looking for drivers in ShimQueryAdapterInfo() 87 } else if (wcsstr(reg_info->value_name, L"ImplicitLayers") != nullptr) { // looking for implicit layers in ShimQueryAdapterInfo() 89 } else if (wcsstr(reg_info->value_name, L"ExplicitLayers") != nullptr) { // looking for explicit layers in ShimQueryAdapterInfo()
|
/third_party/musl/libc-test/src/api/ |
H A D | wchar.c | 62 {wchar_t*(*p)(const wchar_t*restrict,const wchar_t*restrict) = wcsstr;} in f()
|
/third_party/skia/third_party/externals/d3d12allocator/src/ |
H A D | Tests.cpp | 278 CHECK_BOOL(wcsstr(statsString, buffer) != NULL);
in TestFrameIndexAndJson() 282 CHECK_BOOL(wcsstr(statsString, buffer) == NULL);
in TestFrameIndexAndJson() 358 CHECK_BOOL(wcsstr(jsonString, L"\"Resource\\nFoo\\r\\nBar\"") != NULL);
in TestCommittedResourcesAndJson() 359 CHECK_BOOL(wcsstr(jsonString, L"\"Resource \\\"'&<>?#@!&-=_+[]{};:,.\\/\\\\\"") != NULL);
in TestCommittedResourcesAndJson() 360 CHECK_BOOL(wcsstr(jsonString, L"\"\"") != NULL);
in TestCommittedResourcesAndJson()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | wchar.h | 75 wchar_t *wcsstr (const wchar_t *__restrict, const wchar_t *__restrict);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | wchar.h | 75 wchar_t *wcsstr (const wchar_t *__restrict, const wchar_t *__restrict);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | wchar.h | 75 wchar_t *wcsstr (const wchar_t *__restrict, const wchar_t *__restrict);
|
/third_party/musl/include/ |
H A D | wchar.h | 75 wchar_t *wcsstr (const wchar_t *__restrict, const wchar_t *__restrict);
|
/third_party/python/PC/ |
H A D | launcher.c | 535 if (wcsstr(wanted_ver, L"-32")) { in find_python_by_version() 539 else if (wcsstr(wanted_ver, L"-64")) { /* Added option to select 64 bit explicitly */ in find_python_by_version() 1075 *command = wcsstr(shebang_line, L"python"); in parse_shebang()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_string.cpp | 620 if (wcsstr(haystack_aligned, needle_aligned) == nullptr) { in BM_function_Wcsstr()
|
/third_party/lzma/CPP/Common/ |
H A D | MyString.cpp | 1368 const wchar_t *fs = wcsstr(_chars + startIndex, s);
in Find()
|
/third_party/googletest/googletest/src/ |
H A D | gtest.cc | 1780 return wcsstr(haystack, needle) != nullptr;
|
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest.cc | 1573 return wcsstr(haystack, needle) != nullptr; in IsSubstringPred()
|
/third_party/node/deps/googletest/src/ |
H A D | gtest.cc | 1797 return wcsstr(haystack, needle) != nullptr;
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 376 extern wchar_t *wcsstr (const wchar_t *__haystack, const wchar_t *__needle) 14076 using ::wcsstr; 14093 wcsstr(wchar_t* __s1, const wchar_t* __s2) 14094 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); } [all...] |