HomeSort by relevance Sort by last modified time
    Searched refs:regexec (Results 1 - 25 of 41) sorted by null

1 2

  /bionic/libc/include/
regex.h 90 /* regexec() flags */
101 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
  /development/ndk/platforms/android-8/include/
regex.h 90 /* regexec() flags */
101 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
  /ndk/sources/host-tools/ndk-stack/regex/
regex.h 94 /* regexec() flags */
105 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
regexec.c 1 /* $OpenBSD: regexec.c,v 1.11 2005/08/05 13:03:00 espie Exp $ */
34 * @(#)regexec.c 8.3 (Berkeley) 3/20/94
38 * the outer shell of regexec()
57 #define states1 states /* for later use in regexec() decision */
132 - regexec - interface for matching
139 regexec(const regex_t *preg, const char *string, size_t nmatch, function
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex12.c 70 if (! regexec (&re, tests[i].string, tests[i].nmatch,
73 printf ("regexec %lu incorrectly matched\n", i);
bug-regex27.c 55 int rv = regexec (&r, tests[i].string, 0, NULL, 0);
58 printf ("regexec %lu unexpected value %d != %d\n",
bug-regex9.c 58 if (regexec (&re, text, 2, rm, 0))
60 puts ("regexec failed");
66 printf ("regexec match failure: %d %d %d %d\n",
bug-regex11.c 119 if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0))
121 printf ("%s: regexec %lu failed\n", tests[i].pattern, i);
133 printf ("%s: regexec %lu match failure rm[%d] %d..%d\n",
runptests.c 92 err = regexec (&re, tests[cnt].str, 20, match, 0);
runtests.c 100 err = regexec (&r, t->data, 10, regs, 0);
tst-boost.c 197 if (regexec (&re, string, 20, rm, eflags))
tst-pcre.c 177 if (regexec (&re, string, 20, rm, 0))
tst-regex2.c 109 err = regexec (&rbuf, string, 71, pmatch, 0);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
regex.h 90 /* regexec() flags */
101 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
regex.h 90 /* regexec() flags */
101 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
  /prebuilt/ndk/android-ndk-r5/platforms/android-8/arch-arm/usr/include/
regex.h 90 /* regexec() flags */
101 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-arm/usr/include/
regex.h 90 /* regexec() flags */
101 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-x86/usr/include/
regex.h 90 /* regexec() flags */
101 int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
  /external/pcre/
pcreposix.h 137 PCREPOSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t,
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 32 # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef) macro
64 #include "regexec.c"
  /external/llvm/lib/Support/
Android.mk 68 regexec.c \
CMakeLists.txt 55 regexec.c
  /ndk/sources/host-tools/ndk-stack/
GNUMakefile 52 regex/regexec.c \
  /bionic/libc/regex/
regexec.c 1 /* $OpenBSD: regexec.c,v 1.11 2005/08/05 13:03:00 espie Exp $ */
34 * @(#)regexec.c 8.3 (Berkeley) 3/20/94
38 * the outer shell of regexec()
57 #define states1 states /* for later use in regexec() decision */
132 - regexec - interface for matching
139 regexec(const regex_t *preg, const char *string, size_t nmatch, function
  /external/chromium/testing/gtest/src/
gtest-port.cc 132 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
141 return regexec(&re.partial_regex_, str, 1, &match, 0) == 0;

Completed in 2219 milliseconds

1 2