Home
last modified time | relevance | path

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

12345678

/PHP-7.0/ext/oci8/tests/
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 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)
H A Dimp_res_field.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 Dconn_attr_5.phpt11 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
12 if (!(isset($matches[0]) && $matches[1] >= 10)) {
H A Dbind_char_2.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] >= 12)) {
H A Dbind_char_2_11gR1.phpt8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
9 if (!(isset($matches[0]) && $matches[1] < 12)) {
H A Dini_1.phpt6 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
7 if (!(isset($matches[0]) && $matches[0] >= 11)) {
/PHP-7.0/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.0/ext/pcre/tests/
H A Dbug27103.phpt19 preg_match_all('/./u', $teststr, $matches);
20 iter($matches[0]);
H A Dbug70232.phpt13 preg_match_all($pattern, $subject, $matches);
14 var_dump($matches);
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.0/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.0/ext/ftp/tests/
H A Dserver.inc321 switch ($matches [1]){
335 fputs($s, "550 No file named \"{$matches [1]}\"\r\n");
347 switch($matches[1]){
403 }elseif (preg_match('/^PASV/', $buf, $matches)) {
432 } elseif (preg_match('/^EPSV/', $buf, $matches)) {
434 } elseif (preg_match('/^SITE EXEC/', $buf, $matches)) {
437 } elseif (preg_match('/^RMD/', $buf, $matches)) {
440 } elseif (preg_match('/^SITE CHMOD/', $buf, $matches)) {
443 } elseif (preg_match('/^ALLO (\d+)/', $buf, $matches)) {
446 }elseif (preg_match('/^LIST www\//', $buf, $matches)) {
[all …]
/PHP-7.0/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.0/ext/mysqli/tests/
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.0/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.0/ext/readline/
H A Dreadline.c484 char **matches = NULL; in _readline_completion_cb() local
493 matches = rl_completion_matches(text,_readline_command_generator); in _readline_completion_cb()
495 matches = malloc(sizeof(char *) * 2); in _readline_completion_cb()
496 if (!matches) { in _readline_completion_cb()
499 matches[0] = strdup(""); in _readline_completion_cb()
500 matches[1] = '\0'; in _readline_completion_cb()
510 return matches; in _readline_completion_cb()
/PHP-7.0/scripts/dev/
H A Dcheck_parameters.php204 if (preg_match_all($regex, $txt, $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)) {
208 foreach ($matches as $m) {
316 $txt = preg_replace_callback('@/\*.*\*/@SsU', function($matches) {
317 return preg_replace("/[^\r\n]+/S", "", $matches[0]);
/PHP-7.0/ext/fileinfo/tests/
H A Dbug68398.phpt2 Bug #68398: msooxml matches too many archives

Completed in 38 milliseconds

12345678