Lines Matching refs:incl_regmatch
3357 regmatch_T incl_regmatch; in find_pattern_in_path() local
3371 incl_regmatch.regprog = NULL; in find_pattern_in_path()
3397 incl_regmatch.regprog = vim_regcomp(inc_opt, in find_pattern_in_path()
3399 if (incl_regmatch.regprog == NULL) in find_pattern_in_path()
3401 incl_regmatch.rm_ic = FALSE; // don't ignore case in incl. pat. in find_pattern_in_path()
3427 if (incl_regmatch.regprog != NULL in find_pattern_in_path()
3428 && vim_regexec(&incl_regmatch, line, (colnr_T)0)) in find_pattern_in_path()
3435 new_fname = find_file_name_in_path(incl_regmatch.startp[0], in find_pattern_in_path()
3436 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]), in find_pattern_in_path()
3440 new_fname = file_name_in_line(incl_regmatch.endp[0], 0, in find_pattern_in_path()
3518 p = incl_regmatch.startp[0]; in find_pattern_in_path()
3519 i = (int)(incl_regmatch.endp[0] in find_pattern_in_path()
3520 - incl_regmatch.startp[0]); in find_pattern_in_path()
3525 for (p = incl_regmatch.endp[0]; in find_pattern_in_path()
3535 p = incl_regmatch.endp[0]; in find_pattern_in_path()
4004 vim_regfree(incl_regmatch.regprog); in find_pattern_in_path()