Home
last modified time | relevance | path

Searched refs:regexec (Results 151 – 175 of 6797) sorted by relevance

12345678910>>...272

/dports/mail/notmuch-emacs/notmuch-0.34.2/lib/
H A Dregexp-fields.cc110 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in next()
122 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in skip_to()
133 return (regexec (&regexp_, (*it_).c_str (), 0, NULL, 0) == 0); in check()
185 if (regexec (&regexp, (*it).c_str () + term_prefix.size (), in _notmuch_regexp_to_query()
/dports/net-im/freetalk/freetalk-4.1/src/
H A Dinterpreter.c191 if (!regexec (&preg, rl_line_buffer, 0, NULL, 0)) in auto_complete()
207 if (!regexec (&preg, rl_line_buffer, 0, NULL, 0)) in auto_complete()
221 if (!regexec (&preg, rl_line_buffer, 0, NULL, 0)) in auto_complete()
256 if (!regexec (&preg, rl_line_buffer, 0, NULL, 0)) in auto_complete()
/dports/mail/py-notmuch2/notmuch-0.34.2/lib/
H A Dregexp-fields.cc110 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in next()
122 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in skip_to()
133 return (regexec (&regexp_, (*it_).c_str (), 0, NULL, 0) == 0); in check()
185 if (regexec (&regexp, (*it).c_str () + term_prefix.size (), in _notmuch_regexp_to_query()
/dports/mail/notmuch-mutt/notmuch-0.34.2/lib/
H A Dregexp-fields.cc110 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in next()
122 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in skip_to()
133 return (regexec (&regexp_, (*it_).c_str (), 0, NULL, 0) == 0); in check()
185 if (regexec (&regexp, (*it).c_str () + term_prefix.size (), in _notmuch_regexp_to_query()
/dports/mail/py-notmuch/notmuch-0.34.2/lib/
H A Dregexp-fields.cc110 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in next()
122 if (regexec (&regexp_, value.c_str (), 0, NULL, 0) == 0) in skip_to()
133 return (regexec (&regexp_, (*it_).c_str (), 0, NULL, 0) == 0); in check()
185 if (regexec (&regexp, (*it).c_str () + term_prefix.size (), in _notmuch_regexp_to_query()
/dports/irc/srvx/srvx-1.3.1/rx/
H A Drxposix.h36 extern int regexec (const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], in…
46 extern int regexec ();
/dports/cad/netgen-lvs/netgen-1.5.211/base/
H A Dregexp.h48 #define RegexpMatch(a,b) regexec((a),(b))
53 extern int regexec(regexp *prog, char *string);
/dports/mail/sma/sma-1.4/
H A DMakefile.msvcp14 ascii.obj init.obj regex/regcomp.obj regex/regexec.obj \
20 regexec.obj regfree.obj regerror.obj
/dports/math/R/R-4.1.2/tests/
H A Dutf8-regex.R190 identical(unlist(regmatches(x, regexec("a", x, perl=TRUE))), res),
191 identical(unlist(regmatches(x, regexec("a", x))), res),
195 identical(unlist(regmatches(x, regexec("a", x, fixed=TRUE))), res))
208 identical(unlist(regmatches(y, regexec("a", x))), res),
209 identical(unlist(regmatches(y, regexec("a", x, perl=TRUE))), res),
213 identical(unlist(regmatches(y, regexec("a", x, fixed=TRUE))), res))
224 pos <- regexec(pattern, e, useBytes = useBytes, perl = perl)
258 m.by.name.1 <- do.call(cbind, regmatches(s.1, regexec(p.1n, s.1, perl=TRUE)))
/dports/math/libRmath/R-4.1.1/tests/
H A Dutf8-regex.R190 identical(unlist(regmatches(x, regexec("a", x, perl=TRUE))), res),
191 identical(unlist(regmatches(x, regexec("a", x))), res),
195 identical(unlist(regmatches(x, regexec("a", x, fixed=TRUE))), res))
208 identical(unlist(regmatches(y, regexec("a", x))), res),
209 identical(unlist(regmatches(y, regexec("a", x, perl=TRUE))), res),
213 identical(unlist(regmatches(y, regexec("a", x, fixed=TRUE))), res))
224 pos <- regexec(pattern, e, useBytes = useBytes, perl = perl)
258 m.by.name.1 <- do.call(cbind, regmatches(s.1, regexec(p.1n, s.1, perl=TRUE)))
/dports/devel/tla/tla-1.3.5/src/docs-hackerlab/texi/
H A Dposix-regexps.texi93 regexec
170 /* Report only success/failure in `regexec'.
197 state machines. In particular, `regexec' will
262 @b{* Function} @code{regexec}@fuindex regexec
266 int regexec (const regex_t *preg,
391 /* REG_NO_SUBEXP_REPORTING causes `regexec' to fill in only
625 Posix requires that when @code{regexec} reports the position of a
641 Finally, Posix requires that when regexec determines what
875 to @code{regexec} is less than or equal to @code{1} (i.e., if @code{regexec} is not
1003 a signal handler while using @code{regexec}:
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libast/comp/
H A Dfnmatch.c67 reflags = regexec(&re, subject, 1, &match, 0); in fnmatch()
75 reflags = regexec(&re, subject, 0, NiL, 0); in fnmatch()
/dports/shells/ksh93/ast-93u/src/lib/libast/comp/
H A Dfnmatch.c67 reflags = regexec(&re, subject, 1, &match, 0); in fnmatch()
75 reflags = regexec(&re, subject, 0, NiL, 0); in fnmatch()
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libast/comp/
H A Dfnmatch.c67 reflags = regexec(&re, subject, 1, &match, 0); in fnmatch()
75 reflags = regexec(&re, subject, 0, NiL, 0); in fnmatch()
/dports/www/R-cran-shiny/shiny/tests/testthat/
H A Dtest-actionButton.R12 regmatches(act_html, regexec("class=\"[^\"]\"", act_html))[[1]]
42 regmatches(act_html, regexec("class=\"[^\"]\"", act_html))[[1]]
/dports/audio/libcddb/libcddb-1.3.2/lib/
H A Dcddb_cmd.c655 if (regexec(REGEX_DISC_LENGTH, line, 2, matches, 0) == 0) { in cddb_parse_record()
671 if (regexec(REGEX_DISC_TITLE, line, 5, matches, 0) == 0) { in cddb_parse_record()
722 if (regexec(REGEX_DISC_YEAR, line, 2, matches, 0) == 0) { in cddb_parse_record()
731 if (regexec(REGEX_DISC_GENRE, line, 2, matches, 0) == 0) { in cddb_parse_record()
742 if (regexec(REGEX_TRACK_TITLE, line, 6, matches, 0) == 0) { in cddb_parse_record()
799 if (regexec(REGEX_DISC_EXT, line, 2, matches, 0) == 0) { in cddb_parse_record()
819 if (regexec(REGEX_TRACK_EXT, line, 3, matches, 0) == 0) { in cddb_parse_record()
845 if (regexec(REGEX_PLAY_ORDER, line, 2, matches, 0) == 0) { in cddb_parse_record()
975 if (regexec(REGEX_QUERY_MATCH, line, 7, matches, 0) == REG_NOMATCH) { in cddb_parse_query_data()
1210 if (regexec(REGEX_TEXT_SEARCH, buf, 11, pre_matches, 0) == 0) { in cddb_parse_search_data()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/lib/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A Dregex.cc15 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()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A 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()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A 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()
/dports/multimedia/v4l_compat/linux-5.13-rc2/tools/perf/arch/arm/annotate/
H A Dinstructions.c19 if (!regexec(&arm->call_insn, name, 2, match, 0)) in arm__associate_instruction_ops()
21 else if (!regexec(&arm->jump_insn, name, 2, match, 0)) in arm__associate_instruction_ops()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A 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()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A 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()
/dports/multimedia/libv4l/linux-5.13-rc2/tools/perf/arch/arm/annotate/
H A Dinstructions.c19 if (!regexec(&arm->call_insn, name, 2, match, 0)) in arm__associate_instruction_ops()
21 else if (!regexec(&arm->jump_insn, name, 2, match, 0)) in arm__associate_instruction_ops()
/dports/devel/llvm12/llvm-project-12.0.1.src/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A 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()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A 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()

12345678910>>...272