Home
last modified time | relevance | path

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

1234

/external/llvm-project/lldb/tools/debugserver/source/MacOSX/DarwinLog/
DLogFilterRegex.cpp56 return ::regexec(&m_regex, message.GetActivity(), 0, nullptr, 0) == 0; in DoesMatch()
61 return ::regexec(&m_regex, message.GetActivityChain().c_str(), 0, nullptr, in DoesMatch()
67 return ::regexec(&m_regex, message.GetCategory(), 0, nullptr, 0) == 0; in DoesMatch()
78 bool match = ::regexec(&m_regex, message_text, 0, nullptr, 0) == 0; in DoesMatch()
89 return ::regexec(&m_regex, message.GetSubsystem(), 0, nullptr, 0) == 0; in DoesMatch()
/external/libcups/vcnet/regex/
DMakefile20 OBJPRODN=regcomp.o regexec.o regerror.o regfree.o
23 REGSRC=regcomp.c regerror.c regexec.c regfree.c
28 LINTC=regcomp.c regexec.c regerror.c regfree.c debug.c main.c
56 regexec.o: engine.c engine.ih
Dregex.def6 regexec
Dregex.h58 extern int regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/
Dregex.cpp15 int rv = regexec(preg, string, 0, NULL, 0); in test_matched()
26 int rv = regexec(preg, string, __arraycount(rm), rm, 0); in test_print_matches()
/external/pcre/dist2/src/
Dpcre2posix.c212 #undef regexec
213 PCRE2POSIX_EXP_DECL int regexec(const regex_t *, const char *, size_t,
216 regexec(const regex_t *preg, const char *string, size_t nmatch, in regexec() function
Dpcre2posix.h154 #define regexec pcre2_regexec macro
/external/libcxx/utils/google-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()
/external/llvm-project/llvm/utils/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()
/external/google-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()
/external/llvm-project/libcxx/utils/google-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()
/external/strace/
Dbasic_filters.c136 rc = regexec(&preg, sysent_vec[p][i].sys_name, in qualify_syscall_regex()
147 rc = regexec(&preg, name_buf, 0, NULL, 0); in qualify_syscall_regex()
/external/toybox/toys/pending/
Dman.c77 return !regexec(&TT.reg, TT.k, 0, 0, 0)||!regexec(&TT.reg, TT.line, 0, 0, 0); in k()
/external/toybox/toys/posix/
Dnl.c49 if (*TT.b == 'p') match = !regexec((void *)(toybuf+16), line, 0, 0, 0); in do_nl()
/external/libabigail/src/
Dabg-regex.cc129 return !regexec(r.get(), str.c_str(), 0, NULL, 0); in match()
/external/libcups/cups/
Ddebug.c121 result = regexec(debug_filter, format, 0, NULL, 0); in _cups_debug_printf()
204 result = regexec(debug_filter, s, 0, NULL, 0); in _cups_debug_puts()
/external/llvm-project/llvm/utils/benchmark/src/
Dre.h146 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0; in Match()
/external/libcxx/utils/google-benchmark/src/
Dre.h152 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0; in Match()
/external/google-benchmark/src/
Dre.h152 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0; in Match()
/external/llvm-project/libcxx/utils/google-benchmark/src/
Dre.h152 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0; in Match()
/external/erofs-utils/lib/
Dexclude.c123 int ret = regexec(&r->reg, s, (size_t)0, NULL, 0); in erofs_is_exclude_path()

1234