Home
last modified time | relevance | path

Searched refs:matches (Results 151 – 175 of 184) sorted by relevance

12345678

/PHP-7.2/ext/oci8/tests/
H A Dbind_char_4_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dimp_res_7.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
13 if (!(isset($matches[0]) && $matches[0] >= 12)) {
H A Dimp_res_3.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
13 if (!(isset($matches[0]) && $matches[0] >= 12)) {
/PHP-7.2/ext/mbstring/tests/
H A Dmb_ereg_variation6.phpt16 * Test how mb_ereg() matches special characters for $pattern
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A DtestoutputEBC116 for DFA matching (otherwise it may show multiple matches). --/
H A Dtestoutput10778 Matched, but offsets vector is too small to show all matches
806 Matched, but offsets vector is too small to show all matches
834 Matched, but offsets vector is too small to show all matches
862 Matched, but offsets vector is too small to show all matches
890 Matched, but offsets vector is too small to show all matches
2127 /-- Perl matches these --/
H A Dgrepoutput653 Binary file ./testdata/grepbinary matches
658 Binary file ./testdata/grepbinary matches
H A Dtestinput15305 /-- This matches "aaaac"; each PRUNE advances one character until the subject
5337 /-- This matches "ac" because SKIP forces the next match to start on the
5353 /-- In this case, neither does COMMIT. This still matches "ac". --/
5366 /-- This matches "aaaaaac", as expected. --/
H A Dtestoutput855 Matched, but offsets vector is too small to show all matches
3111 Matched, but offsets vector is too small to show all matches
3142 Matched, but offsets vector is too small to show all matches
7556 Matched, but offsets vector is too small to show all matches
7725 Matched, but offsets vector is too small to show all matches
H A Dtestinput101121 /-- Perl matches these --/
H A Dtestoutput9411 Matched, but offsets vector is too small to show all matches
437 Matched, but offsets vector is too small to show all matches
H A Dtestoutput18802 /-- This matches "aaaac"; each PRUNE advances one character until the subject
8839 /-- This matches "ac" because SKIP forces the next match to start on the
8858 /-- In this case, neither does COMMIT. This still matches "ac". --/
8873 /-- This matches "aaaaaac", as expected. --/
H A Dtestinput61112 /-- Perl matches these --/
/PHP-7.2/ext/pcre/tests/
H A Dpreg_match_error4.phpt907 $count = preg_match($re, $str, $matches);
929 var_dump("Done, $count matches.");
934 string(16) "Done, 1 matches."
/PHP-7.2/ext/pcre/pcrelib/
H A DNEWS89 . In UCP mode, \s was not matching two of the characters that Perl matches,
139 . \X now matches a Unicode extended grapheme cluster.
303 removed, extra information is given for partial matches, the partial matching
354 \R matches any Unicode line ending (the default) or just CR, LF, and CRLF.
378 fails at CRLF if there are explicit CR or LF matches within the pattern.
409 matches bar preceded by foo, but only sets bar as the matched string.
462 3. The \R escape matches a single Unicode newline sequence as a single unit.
517 the other hand, it does find all matches, not just the first, and it works
H A DHACKING22 the pattern was all used up, all remaining states were possible matches, and
37 matches individual wild portions of the pattern. This is an "NFA algorithm" in
121 simultaneously for all possible matches that start at one point in the subject
263 matches from 0 to the given number. A repeat with a non-zero minimum and a
298 OP_PROP and OP_NOTPROP are used for positive and negative matches of a
509 Recursion either matches the current regex, or some subexpression. The opcode
H A DChangeLog96 (?=.*[A-Z])(?=.{8,16})(?!.*[\s]) matches after the start in lines that
514 37. There was a similar problem to 36 in pcretest for global matches.
1175 10. Changed the meaning of \X so that it now matches a Unicode extended
2163 5. Added support for \N, which always matches any character other than
3397 pcrecpp::RE("a*").FullMatch("aaa") matches, while
4435 around matches be printed.
4966 Pattern PCRE matches Perl matches
5018 mode. Unlike ".", it always matches newline, whatever the setting of
5553 matches null strings.
5776 A backreference to itself in a repeated group matches the previous
[all …]
H A Dpcre_jit_compile.c4647 jump_list *matches = NULL; in fast_forward_start_bits() local
4666 if (!check_class_ranges(common, start_bits, (start_bits[31] & 0x80) != 0, TRUE, &matches)) in fast_forward_start_bits()
4709 if (matches != NULL) in fast_forward_start_bits()
4710 set_jumps(matches, LABEL()); in fast_forward_start_bits()
/PHP-7.2/sapi/fpm/tests/
H A Dtester.inc779 function ($matches) use ($vars) {
780 $varName = $matches[1];
785 $pool = $matches[2] ?? 'default';
/PHP-7.2/
H A Drun-tests.php567 $matches = array(); variable
568 if (preg_match('/^#.*\[(.*)\]\:\s+(.*)$/', $test, $matches)) {
569 $redir_tests[] = array($matches[1], $matches[2]);
H A Dserver-tests.php1154 if ($k == 'POST' && preg_match('/^(.*?)\r?\n$/Ds',$v,$matches)) {
1155 $section_text[$k]=$matches[1];
H A DUPGRADING145 subpatterns and empty matches by reporting NULL and "" (empty string),
/PHP-7.2/ext/pdo/
H A Dpdo_sql_parser.re144 /* query matches native syntax */
/PHP-7.2/ext/phar/phar/
H A Dpharcommand.inc237 $matches = NULL;
238 if (preg_match(",^php[ \t]+([^ \t].*[\\\\/]PHP[\\\\/]Archive\.php)$,", $ent, $matches)) {
239 $sub = $matches[1];
/PHP-7.2/ext/zip/
H A Dphp_zip.c671 int matches; in php_zip_pcre() local
700 matches = pcre_exec(re, NULL, ZSTR_VAL(namelist[i]), ZSTR_LEN(namelist[i]), 0, 0, ovector, 3); in php_zip_pcre()
702 if (matches < 0) { in php_zip_pcre()

Completed in 146 milliseconds

12345678