Lines Matching refs:result
28 char *result = index(str, 'e');
29 if (strcmp(str + 1, result) != 0) {
30 t_error("%s index get result is %s are not want %s\n", __func__, result, str + 1);
36 * @tc.desc : The result returned by the index function when the target character appears multiple times in the
44 char *result = index(str, 'l');
45 if (strcmp(str + add_size, result) != 0) {
46 t_error("%s index get result is %s are not want %s\n", __func__, result, str + add_size);
52 * @tc.desc : The result returned by the index function when the target character does not appear in the test
59 char *result = index(str, 'a');
60 if (result) {
61 t_error("%s index get result is %s are not want ''\n", __func__, result);