Lines Matching refs:matches
29 char_u **matches; in ex_help() local
88 n = find_help_tags(arg, &num_matches, &matches, in ex_help()
97 len = (int)STRLEN(matches[i]); in ex_help()
98 if (len > 3 && matches[i][len - 3] == '@' in ex_help()
99 && STRICMP(matches[i] + len - 2, lang) == 0) in ex_help()
112 FreeWild(num_matches, matches); in ex_help()
117 tag = vim_strsave(matches[i]); in ex_help()
118 FreeWild(num_matches, matches); in ex_help()
322 char_u ***matches, in find_help_tags() argument
559 *matches = (char_u **)""; in find_help_tags()
564 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK in find_help_tags()
569 qsort((void *)*matches, (size_t)*num_matches, in find_help_tags()
573 vim_free((*matches)[--*num_matches]); in find_help_tags()