Lines Matching refs:regmatch
3346 regmatch_T regmatch; in dos_expandpath() local
3436 regmatch.rm_ic = TRUE; // Always ignore case in dos_expandpath()
3437 regmatch.regprog = vim_regcomp(pat, RE_MAGIC); in dos_expandpath()
3442 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0) in dos_expandpath()
3490 || (regmatch.regprog != NULL in dos_expandpath()
3491 && (vim_regexec(®match, p, (colnr_T)0) in dos_expandpath()
3493 && vim_regexec(®match, p_alt, (colnr_T)0)))) in dos_expandpath()
3538 vim_regfree(regmatch.regprog); in dos_expandpath()
3591 regmatch_T regmatch; in unix_expandpath() local
3680 regmatch.rm_ic = TRUE; // 'wildignorecase' set in unix_expandpath()
3682 regmatch.rm_ic = p_fic; // ignore case when 'fileignorecase' is set in unix_expandpath()
3685 regmatch.regprog = vim_regcomp(pat, RE_MAGIC); in unix_expandpath()
3690 if (regmatch.regprog == NULL && (flags & EW_NOTWILD) == 0) in unix_expandpath()
3723 && ((regmatch.regprog != NULL && vim_regexec(®match, in unix_expandpath()
3782 vim_regfree(regmatch.regprog); in unix_expandpath()