Home
last modified time | relevance | path

Searched refs:matches (Results 76 – 100 of 167) sorted by relevance

1234567

/PHP-7.3/ext/oci8/tests/
H A Dimp_res_dbmsoutput.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_get_dbmsoutput.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 Drefcur_prefetch_4.phpt7 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
8 if (!(isset($matches[0]) &&
9 ($matches[1] >= 10))) {
12 ….([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches);
13 if (!(isset($matches[0]) &&
14 (($matches[1] == 11 && $matches[2] >= 2) ||
15 ($matches[1] >= 12)
H A Dcalltimeout1.phpt12 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
13 if (!(isset($matches[0]) && $matches[0] >= 18)) {
H A Dimp_res_get_4.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_insert.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 Drefcur_prefetch_2.phpt7 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
8 if (!(isset($matches[0]) &&
9 ($matches[1] >= 10))) {
12 ….([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches);
13 if (!(isset($matches[0]) &&
14 (($matches[1] == 11 && $matches[2] >= 2) ||
15 ($matches[1] >= 12)
H A Dimp_res_get_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)) {
H A Drefcur_prefetch_1.phpt7 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
8 if (!(isset($matches[0]) &&
9 ($matches[1] >= 10))) {
12 ….([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches);
13 if (!(isset($matches[0]) &&
14 (($matches[1] == 11 && $matches[2] >= 2) ||
15 ($matches[1] >= 12)
H A Dedition_2.phpt11 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
12 if (!(isset($matches[0]) &&
13 (($matches[1] == 11 && $matches[2] >= 2) ||
14 ($matches[1] >= 12)
18 ….([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches);
19 if (!(isset($matches[0]) &&
20 (($matches[1] == 11 && $matches[2] >= 2) ||
21 ($matches[1] >= 12)
H A Dconn_attr_4.phpt12 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
13 if (!(isset($matches[0]) &&
14 (($matches[1] == 11 && $matches[2] >= 2) ||
15 ($matches[1] >= 12)
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_only.phpt83 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
84 $functions_trace[$matches[1]] = $matches[1];
107 if (preg_match("@^[|\s]*>([\w:]+)@ism", $line, $matches)) {
108 $functions_trace[$matches[1]] = $matches[1];
H A Dconnect.inc40 if (preg_match('@Revision:\s+(\d+)\s*\$@ism', mysqli_get_client_info(), $matches)) {
43 …} else if (preg_match('@^mysqlnd (\d+)\.(\d+)\.(\d+).*@ism', mysqli_get_client_info(), $matches)) {
45 $MYSQLND_VERSION = (int)$matches[1] * 10000 + (int)$matches[2] * 100 + (int)$matches[3];
46 } else if (preg_match('@^mysqlnd/PHP 6.0.0-dev@ism', mysqli_get_client_info(), $matches)) {
/PHP-7.3/ext/mbstring/tests/
H A Dbug69151.phpt12 false === mb_eregi('.', $str, $matches),
13 [] === $matches,
/PHP-7.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_nextrowset.phpt12 $matches = array();
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
16 $version = $matches[0] * 10000 + $matches[1] * 100 + $matches[2];
19 $matches[0], $matches[1], $matches[2], $version));
/PHP-7.3/ext/pcre/tests/
H A Dbug70232.phpt7 preg_match_all($pattern, $subject, $matches);
8 var_dump($matches);
H A Dbug27103.phpt19 preg_match_all('/./u', $teststr, $matches);
20 iter($matches[0]);
H A Dpreg_match_all_edit_basic.phpt16 …ET_ORDER)); //finds "This is a test." and "This is another test." (non-greedy) (2 matches)
22 …/\d{2}$/', $string, $match4)); //tries to find 2 digits at the end of a string (0 matches)
25 …(.*)\stest/', $string, $match5)); //tries to find "This is aThis is a [...] test" (0 matches)
H A Dpreg_replace_callback_basic.phpt13 function integer_word($matches) {
15 …return $replacement[$matches[0]]; //all examples will be looking for an integer value, if one is f…
H A Dpreg_match_all_basic.phpt12 …2, PREG_SET_ORDER)); //finds "This is a test." and "This is another test." (non-greedy) (2 matches)
16 …tch_all('/\d{2}$/', $string, $match4)); //tries to find 2 digits at the end of a string (0 matches)
18 …a ){2}(.*)\stest/', $string, $match5)); //tries to find "This is aThis is a [...] test" (0 matches)
/PHP-7.3/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation9.phpt51 echo "\nlinkinfo() value matches lstat['dev']\n";
66 echo "\nlinkinfo() value matches lstat['dev']\n";
83 echo "\nlinkinfo() value matches lstat['dev']\n";
106 linkinfo() value matches lstat['dev']
113 linkinfo() value matches lstat['dev']
120 linkinfo() value matches lstat['dev']
/PHP-7.3/ext/standard/tests/streams/
H A Dbug60106.phpt15 preg_match("#maximum allowed length of (\d+) bytes#", $errmsg, $matches);
16 $socket_file = substr($socket_file, 0, intval($matches[1]) - 1);
/PHP-7.3/ext/ftp/tests/
H A Dserver.inc343 switch ($matches [1]){
357 fputs($s, "550 No file named \"{$matches [1]}\"\r\n");
369 switch($matches[1]){
429 }elseif (preg_match('/^PASV/', $buf, $matches)) {
464 } elseif (preg_match('/^EPSV/', $buf, $matches)) {
466 } elseif (preg_match('/^SITE EXEC/', $buf, $matches)) {
469 } elseif (preg_match('/^RMD/', $buf, $matches)) {
475 } elseif (preg_match('/^DELE/', $buf, $matches)) {
481 }elseif (preg_match('/^LIST www\//', $buf, $matches)) {
487 }elseif (preg_match('/^REST (\d+)/', $buf, $matches)) {
[all …]
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_cmd.c576 ulong matches = 0L; in phpdbg_stack_resolve() local
583 matched[matches] = command; in phpdbg_stack_resolve()
584 matches++; in phpdbg_stack_resolve()
589 if (matches < 3) { in phpdbg_stack_resolve()
592 matched[matches] = command; in phpdbg_stack_resolve()
593 matches++; in phpdbg_stack_resolve()
610 switch (matches) { in phpdbg_stack_resolve()
630 while (it < matches) { in phpdbg_stack_resolve()
632 list = emalloc(matched[it]->name_len + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0)); in phpdbg_stack_resolve()
634 …list = erealloc(list, (pos + matched[it]->name_len) + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0… in phpdbg_stack_resolve()
[all …]
/PHP-7.3/Zend/
H A Dzend_vm_gen.php892 function($matches) use ($spec, $prefix, $op1, $op2, $extra_spec) {
898 $name = $matches[1];
907 if (isset($matches[2])) {
912 if (is_hot_helper($matches[1])) {
927 function($matches) use ($spec, $prefix, $op1, $op2, $extra_spec) {
934 if (isset($matches[2])) {
951 function($matches) use ($spec, $prefix, $op1, $op2, $extra_spec) {
958 if (isset($matches[2])) {
982 if (isset($matches[2])) {
997 foreach ($matches as $match) {
[all …]

Completed in 39 milliseconds

1234567