HomeSort by: relevance | last modified time | path
    Searched refs:regexec (Results 1 - 25 of 222) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/bsd/mdocml/dist/
test-rewb-bsd.c 12 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)
test-rewb-sysv.c 12 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)
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/cmake/
gnu_posix_regex.cpp 10 return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
posix_regex.cpp 10 int ret = regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/cmake/
gnu_posix_regex.cpp 10 return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
posix_regex.cpp 10 int ret = regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
  /src/external/bsd/tre/dist/lib/
regex.h 21 #define regexec tre_regexec macro
Makefile.am 25 regexec.c \
  /src/external/gpl3/binutils/dist/include/
xregex.h 8 # define regexec xregexec macro
  /src/external/gpl3/binutils.old/dist/include/
xregex.h 8 # define regexec xregexec macro
  /src/external/gpl3/gcc/dist/include/
xregex.h 8 # define regexec xregexec macro
  /src/external/gpl3/gcc.old/dist/include/
xregex.h 8 # define regexec xregexec macro
  /src/external/gpl3/gdb/dist/include/
xregex.h 8 # define regexec xregexec macro
  /src/external/gpl3/gdb.old/dist/include/
xregex.h 8 # define regexec xregexec macro
  /src/include/
regexp.h 104 int regexec(const regexp *, const char *) __RENAME(__compat_regexec);
regex.h 128 /* regexec() flags */
139 int regexec(const regex_t * __restrict,
  /src/external/bsd/less/dist/
regexp.h 31 extern int regexec _ANSI_ARGS_((regexp *prog, char *string));
  /src/lib/libcompat/4.3/
regex.c 35 * terms of the regcomp/regexec interface. It's possible that some programs
88 rc = regexec(re_regexp, s);
  /src/external/bsd/nvi/dist/regex/
regex.h 95 /* regexec() flags */
105 int regexec __P((const regex_t *,
  /src/external/bsd/tre/lib/
Makefile 17 SRCS+= regcomp.c regerror.c regexec.c
  /src/external/gpl2/xcvs/dist/lib/
rpmatch.c 56 return regexec (re, response, 0, NULL, 0) == 0 ? match : nomatch;
  /src/external/gpl3/gdb/dist/gdbsupport/
gdb_regex.cc 47 return regexec (&m_pattern, string, nmatch, pmatch, eflags);
  /src/external/gpl3/gdb.old/dist/gdbsupport/
gdb_regex.cc 47 return regexec (&m_pattern, string, nmatch, pmatch, eflags);
  /src/distrib/utils/libhack/
Makefile.inc 28 aligned_alloc.o regcomp.o regexec.o wrap.o
87 regexec.o: ${HACKSRC}/../../../lib/libc/regex/regexec.c
  /src/tests/fs/cd9660/
h_hexdump_r.c 66 if (regexec(&data_re, line, 18, m, 0) == 0) {
72 } else if (regexec(&end_re, line, 2, m, 0) == 0) {

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 9