Lines Matching refs:wc
23 wchar_t *wc = L"ABCD";
25 size_t result = wcsxfrm(src, wc, 5);
26 if (result != wcslen(wc)) {
27 t_error("%s wcsxfrm get result is %d are not %d\n", __func__, result, wcslen(wc));
29 if (wcscmp(src, wc) != 0) {
30 t_error("%s wcsxfrm get is %ls are not %ls\n", __func__, src, wc);
36 wchar_t *wc = L"\u00e5\ue011";
38 size_t result = wcsxfrm(src, wc, 1);
39 if (result != wcslen(wc)) {
40 t_error("%s wcsxfrm get result is %d are not %d\n", __func__, result, wcslen(wc));