/PHP-5.6/ext/pcre/pcrelib/testdata/ |
H A D | testoutput8 | 25 No match 27 No match 29 No match 95 No match 97 No match 99 No match 107 No match 109 No match 115 No match 117 No match [all …]
|
H A D | testoutput5 | 112 No match 114 No match 116 No match 118 No match 141 No match 163 No match 165 No match 253 No match 264 No match 266 No match [all …]
|
H A D | testoutputEBC | 35 No match 37 No match 55 No match 57 No match 59 No match 75 No match 77 No match 93 No match 95 No match 103 No match [all …]
|
H A D | testoutput1 | 11 No match 15 No match 93 No match 95 No match 97 No match 99 No match 101 No match 103 No match 105 No match 115 No match [all …]
|
H A D | testoutput10 | 11 No match 13 No match 25 No match 37 No match 45 No match 55 No match 81 No match 89 No match 91 No match 105 No match [all …]
|
H A D | testoutput6 | 12 No match 14 No match 22 No match 30 No match 38 No match 46 No match 52 No match 54 No match 62 No match 70 No match [all …]
|
H A D | testoutput4 | 15 No match 17 No match 30 No match 32 No match 34 No match 107 No match 109 No match 111 No match 130 No match 132 No match [all …]
|
H A D | wintestoutput3 | 3 No match 5 No match 13 No match 15 No match 25 No match 31 No match 33 No match 39 No match 41 No match 45 No match [all …]
|
H A D | testoutput3 | 12 No match 14 No match 22 No match 24 No match 34 No match 40 No match 42 No match 48 No match 50 No match 54 No match [all …]
|
H A D | testoutput2 | 32 No match 34 No match 36 No match 48 No match 50 No match 52 No match 86 No match 88 No match 323 No match 325 No match [all …]
|
H A D | testoutput7 | 96 No match 98 No match 118 No match 120 No match 122 No match 154 No match 156 No match 158 No match 160 No match 291 No match [all …]
|
H A D | testoutput9 | 25 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 …]
|
/PHP-5.6/ext/gd/libgd/ |
H A D | gd_crop.c | 120 int color, corners, match; in gdImageCropAuto() local 158 match = 1; in gdImageCropAuto() 162 match = (color == c2); in gdImageCropAuto() 174 match = 1; in gdImageCropAuto() 187 match = 1; in gdImageCropAuto() 195 match = 1; in gdImageCropAuto() 233 int match; in gdImageCropThreshold() local 254 match = 1; in gdImageCropThreshold() 270 match = 1; in gdImageCropThreshold() 283 match = 1; in gdImageCropThreshold() [all …]
|
/PHP-5.6/ext/pcre/tests/ |
H A D | match_flags.phpt | 6 var_dump(preg_match_all('/(.)x/', 'zxax', $match, PREG_PATTERN_ORDER)); 7 var_dump($match); 9 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER)); 10 var_dump($match); 12 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_OFFSET_CAPTURE)); 13 var_dump($match); 15 var_dump(preg_match_all('/(.)x/', 'zxyx', $match, PREG_SET_ORDER | PREG_OFFSET_CAPTURE)); 16 var_dump($match);
|
H A D | match_flags3.phpt | 6 var_dump(preg_match('', '', $match, 0xfff)); 8 var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -8)); 9 var_dump($match); 11 var_dump(preg_match('/\d+/', '123 456 789 012', $match, 0, -500)); 12 var_dump($match); 14 var_dump(preg_match_all('/\d+/', '123 456 789 012', $match, 0, -8)); 15 var_dump($match);
|
H A D | match_flags2.phpt | 6 var_dump(preg_match('/x(.)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE)); 7 var_dump($match); 9 var_dump(preg_match('/(.)x/', 'fjszxax', $match, PREG_OFFSET_CAPTURE, 4)); 10 var_dump($match); 12 var_dump(preg_match('/(?P<capt1>.)(x)(?P<letsmix>\S+)/', 'fjszxax', $match, PREG_OFFSET_CAPTURE)); 13 var_dump($match);
|
H A D | bug52971.phpt | 11 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE); 12 var_dump($match); 15 preg_match_all($pattern, $message, $match, PREG_OFFSET_CAPTURE); 16 var_dump($match);
|
H A D | bug37911.phpt | 6 function callback($match) 8 var_dump($match); 9 return $match[1].'/'.strlen($match['name']);
|
H A D | bug40909.phpt | 10 $match = array(); 12 if ($result =preg_match_all($pattern, $context, $match)) 16 var_dump($match);
|
/PHP-5.6/ext/ereg/tests/ |
H A D | split_basic_001.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 40 --> Pattern: '()'; match: '' 47 --> Pattern: '()'; match: 'abcdef' 54 --> Pattern: '[x]|[^x]'; match: 'abcdef' 84 --> Pattern: '\a'; match: 'a' 94 --> Pattern: '[0-9][^0-9]'; match: '2a' 112 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 122 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 132 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
H A D | spliti_basic_001.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 40 --> Pattern: '()'; match: '' 47 --> Pattern: '()'; match: 'abcdef' 54 --> Pattern: '[x]|[^x]'; match: 'abcdef' 84 --> Pattern: '\a'; match: 'a' 94 --> Pattern: '[0-9][^0-9]'; match: '2a' 112 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 122 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 132 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
H A D | split_basic_002.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 44 --> Pattern: '()'; match: '' 51 --> Pattern: '()'; match: 'abcdef' 58 --> Pattern: '[x]|[^x]'; match: 'abcdef' 150 --> Pattern: '\a'; match: 'a' 164 --> Pattern: '[0-9][^0-9]'; match: '2a' 190 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 202 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 212 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
H A D | spliti_basic_002.phpt | 21 echo "\n--> Pattern: '$pattern'; match: '$string'\n"; 30 --> Pattern: '..(a|b|c)(a|b|c)..'; match: '--- ab ---' 44 --> Pattern: '()'; match: '' 51 --> Pattern: '()'; match: 'abcdef' 58 --> Pattern: '[x]|[^x]'; match: 'abcdef' 150 --> Pattern: '\a'; match: 'a' 164 --> Pattern: '[0-9][^0-9]'; match: '2a' 190 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789' 202 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789' 212 --> Pattern: '[[:blank:]]{1,10}'; match: ' [all …]
|
/PHP-5.6/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_sjis_mobile.c | 255 match = 1; in mbfilter_conv_map_tbl() 259 return match; in mbfilter_conv_map_tbl() 270 match = 1; in mbfilter_conv_r_map_tbl() 274 return match; in mbfilter_conv_r_map_tbl() 415 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 418 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 421 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 442 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 448 match = 1; in mbfilter_unicode2sjis_emoji_docomo() 454 match = 1; in mbfilter_unicode2sjis_emoji_docomo() [all …]
|
/PHP-5.6/win32/build/ |
H A D | projectgen.js | 11 if (core.match(arr[i])) { 46 if (arr[i].match('alloca.c') || 48 arr[i].match(/flock\.(c|h)/) || 83 if (munged.match(/[A-Z]{4}/)){ 104 if (fname.match(/\.(ico|rc)/)) { 128 if (type.match("Parsers")) { 317 if (ext.match("Zend")) { 327 if (address.match("sapi")) { 487 arr = config.match(sources); 542 if (!ext.match("php5")) { [all …]
|