Home
last modified time | relevance | path

Searched refs:notbol (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/less/
H A Dpattern.c299 …len, size_t line_off, constant char **sp, constant char **ep, int nsp, int notbol, int search_type) in match_pattern1() argument
314 pattern->not_bol = notbol; in match_pattern1()
328 int flags = (notbol) ? REG_NOTBOL : 0; in match_pattern1()
369 int flags = (notbol) ? PCRE_NOTBOL : 0; in match_pattern1()
393 int flags = (notbol) ? PCRE2_NOTBOL : 0; in match_pattern1()
433 matched = regexec2(pattern, line + line_off, notbol); in match_pattern1()
464 …len, size_t line_off, constant char **sp, constant char **ep, int nsp, int notbol, int search_type) in match_pattern() argument
469 …lbool matched = match_pattern1(pattern, tpattern, line, line_len, line_off, sp, ep, nsp, notbol, s… in match_pattern()
480 notbol = 1; in match_pattern()
H A Dregexp.h30 extern int regexec2 _ANSI_ARGS_((regexp *prog, constant char *string, int notbol));
H A Dregexp.c27 * Added regexec2 with notbol parameter. -- 4/19/99 Mark Nudelman
712 regexec2(register regexp *prog, register constant char *string, int notbol)
741 if (notbol)
726 regexec2(prog,string,notbol) regexec2() argument
H A Dfuncs.h386 …en, size_t line_off, constant char **sp, constant char **ep, int nsp, int notbol, int search_type);