Lines Matching refs:files
964 char_u **files; in helptags_one() local
981 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, in helptags_one()
1000 FreeWild(filecount, files); in helptags_one()
1029 fd = mch_fopen((char *)files[fi], "r"); in helptags_one()
1032 semsg(_("E153: Unable to open %s for reading"), files[fi]); in helptags_one()
1035 fname = files[fi] + dirlen + 1; in helptags_one()
1065 semsg(_("E670: Mix of help file encodings within a language: %s"), files[fi]); in helptags_one()
1121 FreeWild(filecount, files); in helptags_one()
1198 char_u **files; in do_helptags() local
1204 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, in do_helptags()
1217 len = (int)STRLEN(files[i]); in do_helptags()
1220 if (STRICMP(files[i] + len - 4, ".txt") == 0) in do_helptags()
1226 else if (files[i][len - 4] == '.' in do_helptags()
1227 && ASCII_ISALPHA(files[i][len - 3]) in do_helptags()
1228 && ASCII_ISALPHA(files[i][len - 2]) in do_helptags()
1229 && TOLOWER_ASC(files[i][len - 1]) == 'x') in do_helptags()
1232 lang[0] = TOLOWER_ASC(files[i][len - 3]); in do_helptags()
1233 lang[1] = TOLOWER_ASC(files[i][len - 2]); in do_helptags()
1276 FreeWild(filecount, files); in do_helptags()