Lines Matching defs:result
23 * @tc.desc : Test the result of wcspbrk when the target character is punctuation
31 size_t result = wcsrtombs(str, &src, 10, NULL);
32 if (result != want) {
33 t_error("%s wcsrtombs error get result is %d are not 6", __func__, result);
39 * @tc.desc : Test the result of wcsrtombs when the incoming number is less than the length of the wide string
46 size_t result = wcsrtombs(str, &src, 0, NULL);
47 if (result != 0) {
48 t_error("%s wcsrtombs error get result is %d are not 0", __func__, result);