Lines Matching refs:result
28 size_t result = wcsspn(L"hello world", L"abcdefghijklmnopqrstuvwxyz");
30 if (result != want) {
31 t_error("%s wcsspn get result is %d are not want 5U\n", __func__, result);
37 * @tc.desc : Test the wcsspn result when the search string contains spaces
42 size_t result = wcsspn(L"hello world", L"abcdefghijklmnopqrstuvwxyz ");
44 if (result != want) {
45 t_error("%s wcsspn get result is %d are not want 11U\n", __func__, result);
51 * @tc.desc : The result of the wcsspn function when no target exists for the retrieved string
56 size_t result = wcsspn(L"hello world", L"!");
57 if (result != 0U) {
58 t_error("%s wcsspn get result is %d are not want 0U\n", __func__, result);