Home
last modified time | relevance | path

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

12345678

/PHP-7.2/ext/oci8/tests/
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)
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)) {
/PHP-7.2/ext/mbstring/tests/
H A Dbug69151.phpt12 false === mb_eregi('.', $str, $matches),
13 [] === $matches,
/PHP-7.2/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.2/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.2/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.2/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.2/sapi/fpm/tests/
H A Dlogtool.inc89 if (preg_match($this->pattern, $line, $matches) === 0) {
94 if (!isset($matches[2])) {
97 if (!$this->checkMessage($matches[1])) {
101 if (isset($matches[2])) {
106 if (!$this->checkMessage($matches[1], -1)) {
150 if (preg_match($suffixPattern, $line, $matches) === 0) {
153 if ($matches[1] !== substr(self::FINAL_SUFFIX, $this->suffixPosition)) {
177 } elseif (($res = preg_match($this->pattern, $line, $matches)) > 0) {
178 $out = $matches[2];
179 $finalSuffix = $matches[3] ?? false;
[all …]
/PHP-7.2/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.2/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.2/ext/ftp/tests/
H A Dserver.inc350 switch ($matches [1]){
364 fputs($s, "550 No file named \"{$matches [1]}\"\r\n");
376 switch($matches[1]){
436 }elseif (preg_match('/^PASV/', $buf, $matches)) {
471 } elseif (preg_match('/^EPSV/', $buf, $matches)) {
473 } elseif (preg_match('/^SITE EXEC/', $buf, $matches)) {
476 } elseif (preg_match('/^RMD/', $buf, $matches)) {
479 } elseif (preg_match('/^SITE CHMOD/', $buf, $matches)) {
482 } elseif (preg_match('/^ALLO (\d+)/', $buf, $matches)) {
485 }elseif (preg_match('/^LIST www\//', $buf, $matches)) {
[all …]
/PHP-7.2/ext/readline/
H A Dreadline.c494 char **matches = NULL; in _readline_completion_cb() local
503 matches = rl_completion_matches(text,_readline_command_generator); in _readline_completion_cb()
505 matches = malloc(sizeof(char *) * 2); in _readline_completion_cb()
506 if (!matches) { in _readline_completion_cb()
509 matches[0] = strdup(""); in _readline_completion_cb()
510 matches[1] = NULL; in _readline_completion_cb()
520 return matches; in _readline_completion_cb()

Completed in 55 milliseconds

12345678