Home
last modified time | relevance | path

Searched refs:matches (Results 101 – 125 of 140) sorted by relevance

123456

/PHP-5.5/ext/oci8/tests/
H A Dconn_attr_1.phpt12 if (preg_match('/Release 1[01]\./', oci_server_version($c), $matches) !== 1) {
H A Drefcur_prefetch_3.phpt9 if (preg_match('/Release (11\.2|12)\./', oci_server_version($c), $matches) !== 1) {
H A Dbind_char_1_11gR1.phpt8 if (preg_match('/Release 11\.1\./', oci_server_version($c), $matches) !== 1) {
9 if (preg_match('/Release 11\.2\.0\.3/', oci_server_version($c), $matches) !== 1) {
H A Dedition_1.phpt13 if (preg_match('/Release (1[1]\.2|12)\./', oci_server_version($c), $matches) !== 1) {
H A Dconn_attr_4.phpt12 if (preg_match('/Release (11\.2|12)\./', oci_server_version($c), $matches) !== 1) {
H A Dconn_attr.inc6 $sv = preg_match('/Release (11\.2|12)\./', $sv, $matches);
H A Dbind_char_3_11gR1.phpt8 if (preg_match('/Release 11\.1\./', oci_server_version($c), $matches) !== 1) {
9 if (preg_match('/Release 11\.2\.0\.3/', oci_server_version($c), $matches) !== 1) {
H A Dbind_char_4.phpt8 if (preg_match('/Release 10\.2\./', oci_server_version($c), $matches) !== 1) {
9 if (preg_match('/Release 11\.2\.0\.2/', oci_server_version($c), $matches) !== 2) {
H A Dbind_char_4_11gR1.phpt8 if (preg_match('/Release 11\.1\./', oci_server_version($c), $matches) !== 1) {
9 if (preg_match('/Release 11\.2\.0\.3/', oci_server_version($c), $matches) !== 1) {
H A Dbind_char_3.phpt8 if (preg_match('/Release 10\.2\./', oci_server_version($c), $matches) !== 1) {
9 if (preg_match('/Release 11\.2\.0\.2/', oci_server_version($c), $matches) !== 2) {
H A Drefcur_prefetch_4.phpt7 if (preg_match('/Release 1[012]\./', oci_server_version($c), $matches) !== 1) {
H A Drefcur_prefetch_2.phpt7 if (preg_match('/Release 1[012]\./', oci_server_version($c), $matches) !== 1) {
H A Drefcur_prefetch_1.phpt7 if (preg_match('/Release 1[012]\./', oci_server_version($c), $matches) !== 1) {
H A Dedition_2.phpt12 if (preg_match('/Release (1[1]\.2|12)\./', oci_server_version($c), $matches) !== 1) {
/PHP-5.5/ext/pcre/pcrelib/
H A DNEWS68 . In UCP mode, \s was not matching two of the characters that Perl matches,
118 . \X now matches a Unicode extended grapheme cluster.
282 removed, extra information is given for partial matches, the partial matching
333 \R matches any Unicode line ending (the default) or just CR, LF, and CRLF.
357 fails at CRLF if there are explicit CR or LF matches within the pattern.
388 matches bar preceded by foo, but only sets bar as the matched string.
441 3. The \R escape matches a single Unicode newline sequence as a single unit.
496 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 DChangeLog328 37. There was a similar problem to 36 in pcretest for global matches.
989 10. Changed the meaning of \X so that it now matches a Unicode extended
1892 when matches were found, and --line-buffered was not being honoured.
1977 5. Added support for \N, which always matches any character other than
3211 pcrecpp::RE("a*").FullMatch("aaa") matches, while
4249 around matches be printed.
4780 Pattern PCRE matches Perl matches
4832 mode. Unlike ".", it always matches newline, whatever the setting of
5367 matches null strings.
5590 A backreference to itself in a repeated group matches the previous
[all …]
/PHP-5.5/
H A Drun-tests.php542 $matches = array(); variable
543 if (preg_match('/^#.*\[(.*)\]\:\s+(.*)$/', $test, $matches)) {
544 $redir_tests[] = array($matches[1], $matches[2]);
H A Dserver-tests.php1167 if ($k == 'POST' && preg_match('/^(.*?)\r?\n$/Ds',$v,$matches)) {
1168 $section_text[$k]=$matches[1];
/PHP-5.5/ext/pcre/pcrelib/testdata/
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. --/
/PHP-5.5/ext/zip/
H A Dphp_zip.c678 int matches; in php_zip_pcre() local
708 matches = pcre_exec(re, NULL, namelist[i], strlen(namelist[i]), 0, 0, ovector, 3); in php_zip_pcre()
710 if (matches < 0) { in php_zip_pcre()
/PHP-5.5/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-5.5/ext/pdo/
H A Dpdo_sql_parser.re140 /* query matches native syntax */

Completed in 101 milliseconds

123456