| /vim-8.2.3635/src/proto/ |
| H A D | regexp.pro | 19 int vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col);
|
| /vim-8.2.3635/src/ |
| H A D | option.c | 6444 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 D | indent.c | 841 if (vim_regexec(®match, ml_get(lnum) + lead_len, (colnr_T)0)) in get_number_indent() 968 if (vim_regexec(®match, line, 0)) in get_breakindent_win()
|
| H A D | cmdhist.c | 476 if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0)) in del_history_entry()
|
| H A D | findfile.c | 2492 && vim_regexec(®match, path_cutoff, (colnr_T)0) in uniquefy_paths() 2505 if (vim_regexec(®match, pathsep_p + 1, (colnr_T)0) in uniquefy_paths()
|
| H A D | filepath.c | 3491 && (vim_regexec(®match, p, (colnr_T)0) in dos_expandpath() 3493 && vim_regexec(®match, p_alt, (colnr_T)0)))) in dos_expandpath() 3723 && ((regmatch.regprog != NULL && vim_regexec(®match, in unix_expandpath()
|
| H A D | map.c | 1299 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 D | fileio.c | 5369 && (vim_regexec(®match, fname, (colnr_T)0) in match_file_pat() 5371 && vim_regexec(®match, sfname, (colnr_T)0)))) in match_file_pat() 5372 || (!allow_dirs && vim_regexec(®match, tail, (colnr_T)0)))) in match_file_pat()
|
| H A D | search.c | 3428 && 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(®match, line, (colnr_T)(p - line))) in find_pattern_in_path()
|
| H A D | cmdexpand.c | 2219 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 D | arglist.c | 447 if (vim_regexec(®match, alist_name(&ARGLIST[match]), in do_arglist()
|
| H A D | tag.c | 2444 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 D | spell.c | 327 r = vim_regexec(®match, ptr, 0); in spell_check() 2852 if (vim_regexec(®match, p, 0) in check_need_cap()
|
| H A D | buffer.c | 2874 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 D | regexp.c | 2863 vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col) in vim_regexec() function
|
| H A D | message.c | 2381 match = vim_regexec(&cmdmod.cmod_filter_regmatch, msg, (colnr_T)0); in message_filtered()
|
| H A D | insexpand.c | 1335 while (vim_regexec(regmatch, buf, (colnr_T)(ptr - buf))) in ins_compl_files()
|
| H A D | quickfix.c | 1255 r = vim_regexec(®match, 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 D | ex_cmds.c | 516 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) in ex_sort()
|
| H A D | userfunc.c | 3836 && vim_regexec(regmatch, fp->uf_name, 0))) in list_functions()
|
| H A D | syntax.c | 6038 if (vim_regexec(®match, highlight_group_name(i), in get_id_list()
|
| H A D | ex_docmd.c | 6840 if (vim_regexec(®match, p, (colnr_T)0)) in ex_open()
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | version8.txt | 3793 Solution: Copy back regprog after calling vim_regexec.
|