Searched refs:regexec (Results 1 - 25 of 95) sorted by relevance

1234

/freebsd-11-stable/contrib/mdocml/
H A Dtest-rewb-bsd.c12 if (regexec(&re, "the word is here", 0, NULL, 0))
14 if (regexec(&re, "same word", 0, NULL, 0))
16 if (regexec(&re, "word again", 0, NULL, 0))
18 if (regexec(&re, "word", 0, NULL, 0))
20 if (regexec(&re, "wordy", 0, NULL, 0) != REG_NOMATCH)
22 if (regexec(&re, "sword", 0, NULL, 0) != REG_NOMATCH)
24 if (regexec(&re, "reworded", 0, NULL, 0) != REG_NOMATCH)
H A Dtest-rewb-sysv.c12 if (regexec(&re, "the word is here", 0, NULL, 0))
14 if (regexec(&re, "same word", 0, NULL, 0))
16 if (regexec(&re, "word again", 0, NULL, 0))
18 if (regexec(&re, "word", 0, NULL, 0))
20 if (regexec(&re, "wordy", 0, NULL, 0) != REG_NOMATCH)
22 if (regexec(&re, "sword", 0, NULL, 0) != REG_NOMATCH)
24 if (regexec(&re, "reworded", 0, NULL, 0) != REG_NOMATCH)
H A Ddbm_map.c190 return regexec(match->re, str, 0, NULL, 0) == 0;
/freebsd-11-stable/lib/libc/regex/
H A DMakefile.inc9 SRCS+= regcomp.c regerror.c regexec.c regfree.c
16 MLINKS+=regex.3 regcomp.3 regex.3 regexec.3 regex.3 regerror.3
17 MLINKS+=regexec.3 regfree.3
/freebsd-11-stable/lib/libc/locale/
H A Drpmatch.c46 if (regexec(&yes, response, 0, NULL, 0) == 0)
48 else if (regexec(&no, response, 0, NULL, 0) == 0)
/freebsd-11-stable/contrib/gcclibs/include/
H A Dxregex.h8 # define regexec xregexec macro
H A Dxregex2.h273 /* If this bit is set, then report only success or fail in regexec.
278 /* POSIX `eflags' bits (i.e., information for regexec). */
300 REG_NOMATCH, /* Didn't find a match (for regexec). */
547 extern int regexec (const regex_t *__restrict __preg,
/freebsd-11-stable/contrib/gdb/include/
H A Dxregex.h8 # define regexec xregexec macro
/freebsd-11-stable/contrib/binutils/include/
H A Dxregex.h8 # define regexec xregexec macro
H A Dxregex2.h273 /* If this bit is set, then report only success or fail in regexec.
278 /* POSIX `eflags' bits (i.e., information for regexec). */
300 REG_NOMATCH, /* Didn't find a match (for regexec). */
547 extern int regexec (const regex_t *__restrict __preg,
/freebsd-11-stable/lib/libcompat/4.3/
H A Dre_comp.c38 * terms of the regcomp/regexec interface. It's possible that some programs
90 rc = regexec(&re_regexp, s, 0, NULL, 0);
/freebsd-11-stable/contrib/less/
H A Dregexp.h29 extern int regexec _ANSI_ARGS_((regexp *prog, char *string));
/freebsd-11-stable/lib/libc/regex/grot/
H A DMakefile28 REGSRC = regcomp.c regerror.c regexec.c regfree.c engine.c
32 OBJPRODN = regcomp.o regexec.o regerror.o regfree.o
37 LINTC = regcomp.c regexec.c regerror.c regfree.c debug.c main.c $(SRCMISSING)
59 regcomp.o regexec.o regfree.o debug.o: utils.h regex.h regex2.h
61 regexec.o: engine.c engine.ih
/freebsd-11-stable/include/
H A Dregex.h95 /* regexec() flags */
111 int regexec(const regex_t * __restrict, const char * __restrict, size_t,
/freebsd-11-stable/contrib/nvi/regex/
H A Dregex.h91 /* regexec() flags */
101 int regexec(const regex_t *,
/freebsd-11-stable/contrib/gdb/gdb/
H A Dhpacc-abi.c47 if (regexec (&destructor_pattern, name, 0, 0, 0) == 0)
56 if (regexec (&constructor_pattern, name, 0, 0, 0) == 0)
65 return regexec (&operator_pattern, name, 0, 0, 0) == 0;
/freebsd-11-stable/contrib/libgnuregex/
H A Dregex.c32 # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef) macro
67 #include "regexec.c"
/freebsd-11-stable/contrib/nvi/common/
H A Dsearch.c247 eval = regexec(&sp->re_c, l, 1, match,
386 eval = regexec(&sp->re_c, l, 1, match,
421 eval = regexec(&sp->re_c, l, 1, match,
/freebsd-11-stable/usr.sbin/fifolog/fifolog_reader/
H A Dfifolog_reader.c62 if (opt_R != NULL && regexec(&R, (const char *)p, 0, NULL, 0))
/freebsd-11-stable/contrib/flex/
H A Dfilter.c362 && regexec (&regex_linedir, buf, 3, m, 0) == 0) {
413 && regexec (&regex_blank_line, buf, 0, NULL,
/freebsd-11-stable/bin/ed/
H A Dsub.c183 if (!regexec(pat, txt, SE_MAX, rm, 0)) {
207 !regexec(pat, txt, SE_MAX, rm, REG_NOTBOL));
/freebsd-11-stable/usr.bin/m4/
H A Dgnum4.c339 while ((error = regexec(re, string, re->re_nsub+1, pm, flags)) == 0) {
378 switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
396 switch(error = regexec(re, string, re->re_nsub+1, pm, 0)) {
/freebsd-11-stable/contrib/ncurses/form/
H A Dfty_regex.c302 match = (regexec(ap->pRegExp, field_buffer(field, 0), 0, NULL, 0)
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dtext.cpp68 const int res = ::regexec(&preg, str.c_str(), 0, NULL, 0);
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dstack.c91 res = regexec(&re, pzSrc, (size_t)0, NULL, 0);

Completed in 221 milliseconds

1234