Lines Matching refs:regparse
1368 char_u *old_regparse = regparse; in nfa_regatom()
1476 old_regparse = regparse; in nfa_regatom()
1810 p = regparse; in nfa_regatom()
1819 result = nfa_recognize_char_class(regparse, endp, in nfa_regatom()
1831 regparse = endp; in nfa_regatom()
1832 MB_PTR_ADV(regparse); in nfa_regatom()
1841 if (*regparse == '^') // negated range in nfa_regatom()
1844 MB_PTR_ADV(regparse); in nfa_regatom()
1849 if (*regparse == '-') in nfa_regatom()
1854 MB_PTR_ADV(regparse); in nfa_regatom()
1858 while (regparse < endp) in nfa_regatom()
1864 if (*regparse == '[') in nfa_regatom()
1868 charclass = get_char_class(®parse); in nfa_regatom()
1871 equiclass = get_equi_class(®parse); in nfa_regatom()
1873 collclass = get_coll_element(®parse); in nfa_regatom()
1965 if (*regparse == '-' && oldstartc != -1) in nfa_regatom()
1969 MB_PTR_ADV(regparse); in nfa_regatom()
1978 if (*regparse == '\\' in nfa_regatom()
1980 && regparse + 1 <= endp in nfa_regatom()
1981 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL in nfa_regatom()
1983 && vim_strchr(REGEXP_ABBR, regparse[1]) in nfa_regatom()
1988 MB_PTR_ADV(regparse); in nfa_regatom()
1990 if (*regparse == 'n') in nfa_regatom()
1992 || regparse[1] == '-') ? NL : NFA_NEWL; in nfa_regatom()
1993 else if (*regparse == 'd' in nfa_regatom()
1994 || *regparse == 'o' in nfa_regatom()
1995 || *regparse == 'x' in nfa_regatom()
1996 || *regparse == 'u' in nfa_regatom()
1997 || *regparse == 'U' in nfa_regatom()
2003 MB_PTR_BACK(old_regparse, regparse); in nfa_regatom()
2008 startc = backslash_trans(*regparse); in nfa_regatom()
2014 startc = PTR2CHAR(regparse); in nfa_regatom()
2101 MB_PTR_ADV(regparse); in nfa_regatom()
2104 MB_PTR_BACK(old_regparse, regparse); in nfa_regatom()
2105 if (*regparse == '-') // if last, '-' is just a char in nfa_regatom()
2112 regparse = endp; in nfa_regatom()
2113 MB_PTR_ADV(regparse); in nfa_regatom()
2165 regparse = old_regparse + plen; in nfa_regatom()