Home
last modified time | relevance | path

Searched refs:fcount (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/
H A Dhelp.c793 int fcount; in fix_help_buffer() local
808 if (gen_expand_wildcards(1, &NameBuff, &fcount, in fix_help_buffer()
810 && fcount > 0) in fix_help_buffer()
820 for (i1 = 0; i1 < fcount; ++i1) in fix_help_buffer()
822 for (i2 = 0; i2 < fcount; ++i2) in fix_help_buffer()
853 for (fi = 0; fi < fcount; ++fi) in fix_help_buffer()
920 FreeWild(fcount, fnames); in fix_help_buffer()
H A Dspellfile.c5434 int fcount; in ex_mkspell() local
5446 if (get_arglist_exp(arg, &fcount, &fnames, FALSE) == OK) in ex_mkspell()
5448 mkspell(fcount, fnames, ascii, eap->forceit, FALSE); in ex_mkspell()
5449 FreeWild(fcount, fnames); in ex_mkspell()
5889 int fcount, in mkspell() argument
5922 innames = &fnames[fcount == 1 ? 0 : 1]; in mkspell()
5923 incount = fcount - 1; in mkspell()
5929 if (fcount >= 1) in mkspell()
5932 if (fcount == 1 && len > 4 && STRCMP(fnames[0] + len - 4, ".add") == 0) in mkspell()
5939 else if (fcount == 1) in mkspell()
H A Dquickfix.c6078 int fcount; // number of files member
6125 if (get_arglist_exp(p, &args->fcount, &args->fnames, TRUE) == FAIL) in vgr_process_args()
6127 if (args->fcount == 0) in vgr_process_args()
6189 for (fi = 0; fi < cmd_args->fcount && !got_int && cmd_args->tomatch > 0; in vgr_process_files()
6359 FreeWild(args.fcount, args.fnames); in ex_vimgrep()
6364 FreeWild(args.fcount, args.fnames); in ex_vimgrep()
8117 int fcount; in hgr_search_files_in_dir() local
8124 if (gen_expand_wildcards(1, &dirname, &fcount, in hgr_search_files_in_dir()
8126 && fcount > 0) in hgr_search_files_in_dir()
8128 for (fi = 0; fi < fcount && !got_int; ++fi) in hgr_search_files_in_dir()
[all …]
/vim-8.2.3635/src/proto/
H A Dspellfile.pro6 void mkspell(int fcount, char_u **fnames, int ascii, int over_write, int added_word);