Lines Matching refs:regmatch
2616 regmatch_T regmatch; in buflist_findpat() local
2624 regmatch.regprog = vim_regcomp(p, magic_isset() ? RE_MAGIC : 0); in buflist_findpat()
2625 if (regmatch.regprog == NULL) in buflist_findpat()
2636 && buflist_match(®match, buf, FALSE) != NULL) in buflist_findpat()
2658 vim_regfree(regmatch.regprog); in buflist_findpat()
2733 regmatch_T regmatch; in ExpandBufnames() local
2737 regmatch.regprog = vim_regcomp(patc + attempt * 11, RE_MAGIC); in ExpandBufnames()
2738 if (regmatch.regprog == NULL) in ExpandBufnames()
2762 p = buflist_match(®match, buf, p_wic); in ExpandBufnames()
2793 vim_regfree(regmatch.regprog); in ExpandBufnames()
2804 vim_regfree(regmatch.regprog); in ExpandBufnames()