Lines Matching defs:result
29 size_t result = wcscspn(L"hello world", L"abcdefghijklmnopqrstuvwxyz");
30 if (result != 0U) {
31 t_error("%s wcscspn get result is %d are not want 0U\n", __func__, result);
37 * @tc.desc : The return result of wcscspn when dest is a space
42 size_t result = wcscspn(L"hello world", L" ");
44 if (result != want) {
45 t_error("%s wcscspn get result is %d are not want 5U\n", __func__, result);
51 * @tc.desc : wcscspn returns result when dest is punctuation
56 size_t result = wcscspn(L"hello world", L"!");
58 if (result != want) {
59 t_error("%s wcscspn get result is %d are not want 11U\n", __func__, result);