Home
last modified time | relevance | path

Searched refs:vim_regexec (Results 1 – 23 of 23) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dregexp.pro19 int vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col);
/vim-8.2.3635/src/
H A Doption.c6444 if (vim_regexec(regmatch, (char_u *)names[match], (colnr_T)0)) in ExpandSettings()
6464 if (vim_regexec(regmatch, str, (colnr_T)0) in ExpandSettings()
6466 && vim_regexec(regmatch, in ExpandSettings()
6478 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) in ExpandSettings()
6514 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) in ExpandSettings()
6526 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) in ExpandSettings()
6548 if (vim_regexec(regmatch, name_buf, (colnr_T)0)) in ExpandSettings()
H A Dindent.c841 if (vim_regexec(&regmatch, ml_get(lnum) + lead_len, (colnr_T)0)) in get_number_indent()
968 if (vim_regexec(&regmatch, line, 0)) in get_breakindent_win()
H A Dcmdhist.c476 if (vim_regexec(&regmatch, hisptr->hisstr, (colnr_T)0)) in del_history_entry()
H A Dfindfile.c2492 && vim_regexec(&regmatch, path_cutoff, (colnr_T)0) in uniquefy_paths()
2505 if (vim_regexec(&regmatch, pathsep_p + 1, (colnr_T)0) in uniquefy_paths()
H A Dfilepath.c3491 && (vim_regexec(&regmatch, p, (colnr_T)0) in dos_expandpath()
3493 && vim_regexec(&regmatch, p_alt, (colnr_T)0)))) in dos_expandpath()
3723 && ((regmatch.regprog != NULL && vim_regexec(&regmatch, in unix_expandpath()
H A Dmap.c1299 if (vim_regexec(regmatch, p, (colnr_T)0)) in ExpandMappings()
1325 if (p != NULL && vim_regexec(regmatch, p, (colnr_T)0)) in ExpandMappings()
H A Dfileio.c5369 && (vim_regexec(&regmatch, fname, (colnr_T)0) in match_file_pat()
5371 && vim_regexec(&regmatch, sfname, (colnr_T)0)))) in match_file_pat()
5372 || (!allow_dirs && vim_regexec(&regmatch, tail, (colnr_T)0)))) in match_file_pat()
H A Dsearch.c3428 && vim_regexec(&incl_regmatch, line, (colnr_T)0)) in find_pattern_in_path()
3637 && vim_regexec(&def_regmatch, line, (colnr_T)0)) in find_pattern_in_path()
3669 && vim_regexec(&regmatch, line, (colnr_T)(p - line))) in find_pattern_in_path()
H A Dcmdexpand.c2219 if (vim_regexec(regmatch, str, (colnr_T)0)) in ExpandGeneric()
2509 skip = xp->xp_pattern[0] && vim_regexec(regmatch, s, (colnr_T)0) == 0; in ExpandUserDefined()
H A Darglist.c447 if (vim_regexec(&regmatch, alist_name(&ARGLIST[match]), in do_arglist()
H A Dtag.c2444 match = vim_regexec(&orgpat.regmatch, tagp.tagname, (colnr_T)0); in find_tags()
2451 match_no_ic = vim_regexec(&orgpat.regmatch, tagp.tagname, in find_tags()
H A Dspell.c327 r = vim_regexec(&regmatch, ptr, 0); in spell_check()
2852 if (vim_regexec(&regmatch, p, 0) in check_need_cap()
H A Dbuffer.c2874 if (vim_regexec(rmp, name, (colnr_T)0)) in fname_match()
2880 if (p != NULL && vim_regexec(rmp, p, (colnr_T)0)) in fname_match()
H A Dregexp.c2863 vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col) in vim_regexec() function
H A Dmessage.c2381 match = vim_regexec(&cmdmod.cmod_filter_regmatch, msg, (colnr_T)0); in message_filtered()
H A Dinsexpand.c1335 while (vim_regexec(regmatch, buf, (colnr_T)(ptr - buf))) in ins_compl_files()
H A Dquickfix.c1255 r = vim_regexec(&regmatch, linebuf, (colnr_T)0); in qf_parse_get_fields()
8061 if (vim_regexec(p_regmatch, line, (colnr_T)0)) in hgr_search_file()
H A Dex_cmds.c516 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0)) in ex_sort()
H A Duserfunc.c3836 && vim_regexec(regmatch, fp->uf_name, 0))) in list_functions()
H A Dsyntax.c6038 if (vim_regexec(&regmatch, highlight_group_name(i), in get_id_list()
H A Dex_docmd.c6840 if (vim_regexec(&regmatch, p, (colnr_T)0)) in ex_open()
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt3793 Solution: Copy back regprog after calling vim_regexec.