Home
last modified time | relevance | path

Searched refs:regexec (Results 1 – 25 of 90) sorted by relevance

1234

/third_party/musl/libc-test/src/regression/
Dregex-ere-backref.c19 n = regexec(&r, "aa", 0, 0, 0); in main()
26 n = regexec(&r, "a1", 0, 0, 0); in main()
Dregexec-nosub.c14 r = regexec(&re, "zyx abc", 1, 0, 0); in main()
Dregex-negated-range.c18 n = regexec(&r, "k", 0, 0, 0); in main()
Dregex-backref-0.c18 n = regexec(&r, "a0", 0, 0, 0); in main()
Dregex-bracket-icase.c37 n = regexec(&re, t[i].s, 0, 0, 0); in main()
Dtest_src_regression.gni57 "regexec-nosub",
/third_party/musl/Benchmark/musl/
Dlibc_regex.cpp61 benchmark::DoNotOptimize(regexec(&reg, "hello test world", 1, &pmatch, 0)); in Bm_function_Regexec()
80 regexec(&reg, "hello test world", 1, &pmatch, 0); in Bm_function_Regall()
/third_party/pcre2/pcre2/src/
Dpcre2posix.c213 #undef regexec
214 PCRE2POSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t,
217 regexec(const regex_t *preg, const char *string, size_t nmatch,
Dpcre2posix.h168 #define regexec pcre2_regexec macro
Dpcre2posix_test.c158 rc = regexec(&re, *subjects, CAPCOUNT, match, mflags[i]); in main()
/third_party/benchmark/cmake/
Dgnu_posix_regex.cpp10 return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0; in main()
Dposix_regex.cpp10 int ret = regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0; in main()
/third_party/ltp/tools/sparse/sparse-src/validation/
Drestrict-array.c30 extern int regexec (const regex_t *__restrict __preg,
/third_party/musl/porting/liteos_m/kernel/include/
Dregex.h53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int);
/third_party/musl/ndk_musl_include/
Dregex.h53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int);
/third_party/musl/include/
Dregex.h53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int);
/third_party/musl/porting/uniproton/kernel/include/
Dregex.h53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dregex.h53 int regexec(const regex_t *__restrict, const char *__restrict, size_t, regmatch_t *__restrict, int);
/third_party/toybox/toys/pending/
Dman.c77 return !regexec(&TT.reg, TT.k, 0, 0, 0)||!regexec(&TT.reg, TT.line, 0, 0, 0); in k()
/third_party/glfw/src/
Dlinux_joystick.c221 if (regexec(&_glfw.linux_js.regex, entry->d_name, 1, &match, 0) != 0) in _glfwInitJoysticksLinux()
290 if (regexec(&_glfw.linux_js.regex, e->name, 1, &match, 0) == 0) in _glfwPollJoystickEvents()
/third_party/musl/libc-test/src/api/
Dregex.c39 {int(*p)(const regex_t*restrict,const char*restrict,size_t,regmatch_t[restrict],int) = regexec;} in f()
/third_party/toybox/toys/posix/
Dnl.c49 if (*TT.b == 'p') match = !regexec((void *)(toybuf+16), line, 0, 0, 0); in do_nl()
/third_party/musl/libc-test/src/functional/
Dtest-malloc-stats-print.c53 int match_result = regexec(&thread_data_regex, output, REGEX_NMATCH, pmatch, 0); in find_thread_in_output()
/third_party/libabigail/src/
Dabg-regex.cc129 return !regexec(r.get(), str.c_str(), 0, NULL, 0); in match()
/third_party/benchmark/src/
Dre.h152 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0; in Match()

1234