Lines Matching refs:result
30 wchar_t *result = wcsrchr(ch, L'h');
31 if (wcscmp(result, ch) != 0) {
32 t_error("%s wcsrchr get result is %s are not want 'hello, world'\n", __func__, result);
38 * @tc.desc : wcsrchr returns result when testing multiple occurrences of target character in wide string
44 wchar_t *result = wcsrchr(ch, L'l');
45 if (wcscmp(result, ch + 10) != 0) {
46 t_error("%s wcsrchr get result is %s are not want 'ld'\n", __func__, result);
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');
59 if (result) {
60 t_error("%s wcsrchr get result is %s are not want ''\n", __func__, result);