Home
last modified time | relevance | path

Searched refs:match (Results 26 – 50 of 235) sorted by relevance

12345678910

/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput925 No match
27 No match
37 No match
39 No match
45 No match
47 No match
49 No match
51 No match
61 No match
63 No match
[all …]
H A Dtestoutput1412 No match: POSIX code 17: match failed
34 No match: POSIX code 17: match failed
36 No match: POSIX code 17: match failed
46 No match: POSIX code 17: match failed
48 No match: POSIX code 17: match failed
61 No match: POSIX code 17: match failed
96 No match: POSIX code 17: match failed
98 No match: POSIX code 17: match failed
122 No match: POSIX code 17: match failed
148 No match
[all …]
H A Dtestoutput18-3215 No match
22 No match
39 No match
43 No match
53 No match
59 No match
61 No match
71 No match
75 No match
77 No match
[all …]
/PHP-5.5/ext/ereg/regex/
H A Dengine.ih8 static unsigned char *dissect(register struct match *m, unsigned char *start, unsigned char *stop, …
9 static unsigned char *backref(register struct match *m, unsigned char *start, unsigned char *stop, …
10 static unsigned char *fast(register struct match *m, unsigned char *start, unsigned char *stop, sop…
11 static unsigned char *slow(register struct match *m, unsigned char *start, unsigned char *stop, sop…
23 static void print(struct match *m, unsigned char *caption, states st, int ch, FILE *d);
26 static void at(struct match *m, unsigned char *title, unsigned char *start, unsigned char *stop, so…
/PHP-5.5/ext/ereg/tests/
H A Dereg_replace_basic_001.phpt22 list($pattern, $match) = $re;
23 echo "--> Pattern: '$pattern'; match: '$match'\n";
24 var_dump(ereg_replace($pattern, $replacement, $match . ' this contains some matches ' . $match));
31 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
35 --> Pattern: '()'; match: ''
39 --> Pattern: '()'; match: 'abcdef'
43 --> Pattern: '[x]|[^x]'; match: 'abcdef'
55 --> Pattern: '\a'; match: 'a'
59 --> Pattern: '[0-9][^0-9]'; match: '2a'
75 --> Pattern: '[[:blank:]]{1,10}'; match: '
[all …]
H A Deregi_replace_basic_001.phpt22 list($pattern, $match) = $re;
23 echo "--> Pattern: '$pattern'; match: '$match'\n";
24 var_dump(eregi_replace($pattern, $replacement, $match . ' this contains some matches ' . $match));
31 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---'
35 --> Pattern: '()'; match: ''
39 --> Pattern: '()'; match: 'abcdef'
43 --> Pattern: '[x]|[^x]'; match: 'abcdef'
55 --> Pattern: '\a'; match: 'a'
59 --> Pattern: '[0-9][^0-9]'; match: '2a'
75 --> Pattern: '[[:blank:]]{1,10}'; match: '
[all …]
H A Dregular_expressions.inc4 * POSIX regular expressions each coupled with a string that they match,
8 //array(pattern, string to match)
/PHP-5.5/ext/imap/tests/
H A Dclean.inc16 if (preg_match('/\{.*?\}INBOX\.(.+)/', $value->name, $match) == 1) {
17 if (strlen($match[1]) >= strlen($mailbox_prefix)
18 && substr_compare($match[1], $mailbox_prefix, 0, strlen($mailbox_prefix)) == 0) {
/PHP-5.5/ext/standard/tests/strings/
H A Dexplode_variation4.phpt2 Test explode() function : usage variations - match longer string
11 echo "*** Testing explode() function: match longer string ***\n";
19 *** Testing explode() function: match longer string ***
/PHP-5.5/ext/standard/tests/file/
H A Dfnmatch_variation.phpt27 1 => "match*",
34 8 => "match**",
37 11 => "match",
39 13 => "?match",
40 14 => "match?tmp",
42 16 => "match?",
43 17 => "?match?",
44 18 => "match.tmp",
45 19 => "/match.tmp",
47 21 => 'match.tmp',
[all …]
H A Dfnmatch_error.phpt11 Description: fnmatch() checks if the passed string would match
29 var_dump( fnmatch("match.txt") );
33 var_dump( fnmatch("match.txt", "match.txt", TRUE, 100) );
H A Dsymlink_link_linkinfo_is_link_variation9.phpt45 // confirming that linkinfo() = lstat['dev'] , this should always match
53 echo "\nWarning: linkinfo() value doesnt match lstat['dev']\n";
60 // confirming that linkinfo() = lstat['dev'] , this should always match
68 echo "\nWarning: linkinfo() value doesnt match lstat['dev']\n";
77 // confirming that linkinfo() = lstat['dev'], this should always match
85 echo "\nWarning: linkinfo() value doesnt match lstat['dev']\n";
/PHP-5.5/ext/zlib/tests/
H A Dfunc.inc11 if (preg_match(',zlib.*Compiled Version => (\d+\.\d+\.\d+),s', $info, $match)) {
12 $version = $match[1];
/PHP-5.5/build/
H A Dscan_makefile_in.awk7 if (match($0, "[^=]*$")) {
15 if (match($0, "[^=]*$")) {
H A Dmkdep.awk32 if (match($i, "^-[A-Z]") == 0)
60 if (match($0, "^# [0-9]* \".*\.h\"") != 0) {
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg_search_regs.phpt19 $match= mb_ereg_search_regs("ов");
20 var_dump($match);
H A Dmb_ereg_variation3.phpt2 Test mb_ereg() function : usage variations - pass different character classes to see they match cor…
11 * Description: Regular expression match for multibyte string
16 * test that mb_ereg can match correctly when passed different character classes.
22 mb_regex_encoding('utf-8'); // have to set otherwise won't match $mb properly
/PHP-5.5/ext/pcre/tests/
H A Dbug44214_2.phpt9 function myCallBack( $match ) {
11 $array[] = $match[0];
H A Dbug44214.phpt9 function myCallBack( $match ) {
11 $array[] = $match;
H A Dpreg_match_basic_002.phpt2 preg_match() single line match with multi-line input
6 * Description: Perform a regular expression match
H A Dpreg_match_all_edit_basic.phpt6 * Description: Perform a Perl-style global regular expression match
13 …PATTERN_ORDER, -10)); //finds any digit that's not 4 10 digits from the end(1 match)
19 … //finds ".\ [...]" and everything else to the end of the string. (greedy) (1 match)
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DFAQ3 1. Lognest match
5 You can execute longest match by using ONIG_OPTION_FIND_LONGEST option
/PHP-5.5/ext/phar/tests/
H A D011.phpt15 // compressed file length does not match incompressed lentgh for an uncompressed file
30 internal corruption of phar "%s" (compressed and uncompressed size does not match for uncompressed …
/PHP-5.5/ext/spl/tests/
H A Dbug68128.phpt9 foreach ($regex as $match) {
10 var_dump($match);
/PHP-5.5/ext/standard/tests/array/
H A Darray_key_exists_variation5.phpt21 echo "\n-- Attempt to match key in sub-array --\n";
34 -- Attempt to match key in sub-array --

Completed in 92 milliseconds

12345678910