/PHP-8.1/ext/pcre/tests/ |
H A D | pcre.constants.phpt | 9 echo "PREG_OFFSET_CAPTURE= ", PREG_OFFSET_CAPTURE, "\n"; 24 PREG_OFFSET_CAPTURE= 256
|
H A D | bug66121.phpt | 12 preg_match_all('/(?<!ක)/u', 'ම', $matches, PREG_OFFSET_CAPTURE); 17 var_dump(preg_match_all('/(?<!ක)/u', "\xFCම", $matches, PREG_OFFSET_CAPTURE)); 18 var_dump(preg_match_all('/(?<!ක)/u', "\xFCම", $matches, PREG_OFFSET_CAPTURE));
|
H A D | match_flags2.phpt | 6 var_dump(preg_match('/x(.)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE)); 9 var_dump(preg_match('/(.)x/', 'fjszxax', $match, PREG_OFFSET_CAPTURE, 4)); 12 var_dump(preg_match('/(?P<capt1>.)(x)(?P<letsmix>\S+)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE));
|
H A D | bug52971.phpt | 9 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE); 13 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE);
|
H A D | bug61780_1.phpt | 8 preg_match('/(4)?(2)?\d/', '23456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL); 14 preg_match_all('/(4)?(2)?\d/', '123456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL); 20 preg_match_all('/(4)?(2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE | PREG_UNMA…
|
H A D | bug79257.phpt | 12 PREG_OFFSET_CAPTURE); 15 PREG_UNMATCHED_AS_NULL|PREG_OFFSET_CAPTURE); 24 PREG_OFFSET_CAPTURE); 27 PREG_UNMATCHED_AS_NULL|PREG_OFFSET_CAPTURE);
|
H A D | gh11374.phpt | 23 $res = preg_match('{^' . $regex . '$}x', '{a}', $matches, PREG_OFFSET_CAPTURE); 26 $res2 = preg_match('{^' . $regex . '$}xx', '{a}', $matches2, PREG_OFFSET_CAPTURE);
|
H A D | match_flags.phpt | 12 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_OFFSET_CAPTURE)); 15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE));
|
H A D | bug61780_2.phpt | 8 preg_match('/(?<a>4)?(?<b>2)?\d/', '23456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_NULL); 14 preg_match_all('/(?<a>4)?(?<b>2)?\d/', '123456', $matches, PREG_OFFSET_CAPTURE | PREG_UNMATCHED_AS_… 20 preg_match_all('/(?<a>4)?(?<b>2)?\d/', '123456', $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE | P…
|
H A D | preg_match_basic_edit.phpt | 10 var_dump(preg_match('/l^o,\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "… 16 var_dump(preg_match('@\w{4}\s\w{2}\s\\\(?:\s.*)@', $string, $match4, PREG_OFFSET_CAPTURE, 14)); //f…
|
H A D | preg_match_basic.phpt | 9 var_dump(preg_match('/l^o,\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "lo,… 13 var_dump(preg_match('@\w{4}\s\w{2}\s\\\(?:\s.*)@', $string, $match4, PREG_OFFSET_CAPTURE, 14)); //f…
|
H A D | preg_replace_callback_flags.phpt | 9 }, 'abc', -1, $count, PREG_OFFSET_CAPTURE)); 17 'abc', -1, $count, PREG_OFFSET_CAPTURE)
|
H A D | bug42945.phpt | 6 var_dump(preg_match_all('/\b/', "a'", $m, PREG_OFFSET_CAPTURE));
|
H A D | preg_match_all_edit_basic.phpt | 7 var_dump(preg_match_all('/[0-35-9]/', $string, $match1, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10…
|
H A D | 004.phpt | 12 …/S', 'zend_parse_parameters( 0, "addd|s/", a, b, &c);', $m, PREG_SET_ORDER | PREG_OFFSET_CAPTURE));
|
H A D | preg_match_all_basic.phpt | 9 var_dump(preg_match_all('/[0-35-9]/', $string, $match1, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10…
|
/PHP-8.1/ext/spl/tests/ |
H A D | regexiterator_setpregflags.phpt | 27 $r->setPregFlags(PREG_OFFSET_CAPTURE);
|
H A D | regexiterator_getpregflags.phpt | 27 $r->setPregFlags(PREG_OFFSET_CAPTURE);
|
/PHP-8.1/sapi/cli/tests/ |
H A D | 006.phpt | 48 Constant [ int PREG_OFFSET_CAPTURE ] { 256 }
|
/PHP-8.1/scripts/dev/ |
H A D | check_parameters.php | 200 if (preg_match_all($regex, $txt, $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)) {
|
/PHP-8.1/ext/fileinfo/libmagic/ |
H A D | funcs.c | 57 #ifndef PREG_OFFSET_CAPTURE 58 # define PREG_OFFSET_CAPTURE (1<<8) macro
|
H A D | softmagic.c | 46 #ifndef PREG_OFFSET_CAPTURE 47 # define PREG_OFFSET_CAPTURE (1<<8) macro 2263 php_pcre_match_impl(pce, haystack, &retval, &subpats, 0, 1, PREG_OFFSET_CAPTURE, 0); in magiccheck()
|
/PHP-8.1/ext/pcre/ |
H A D | php_pcre.c | 31 #define PREG_OFFSET_CAPTURE (1<<8) macro 441 REGISTER_LONG_CONSTANT("PREG_OFFSET_CAPTURE", PREG_OFFSET_CAPTURE, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION() 1065 bool offset_capture = (flags & PREG_OFFSET_CAPTURE) != 0; in populate_subpat_array() 1216 offset_capture = flags & PREG_OFFSET_CAPTURE; in php_pcre_match_impl()
|
/PHP-8.1/ext/fileinfo/ |
H A D | libmagic.patch | 2081 +#ifndef PREG_OFFSET_CAPTURE 2082 +# define PREG_OFFSET_CAPTURE (1<<8) 3077 +#ifndef PREG_OFFSET_CAPTURE 3078 +# define PREG_OFFSET_CAPTURE (1<<8) 3422 + php_pcre_match_impl(pce, haystack, &retval, &subpats, 0, 1, PREG_OFFSET_CAPTURE, 0);
|