Home
last modified time | relevance | path

Searched refs:w (Results 201 – 225 of 984) sorted by path

12345678910>>...40

/php-src/ext/openssl/tests/
H A Dbug54061.phpt7 $data = "jfdslkjvflsdkjvlkfjvlkjfvlkdm,4w 043920r 9234r 32904r 09243
H A Dstream_server_reneg_limit.phpt50 $w = $e = [];
52 stream_select($r, $w, $e, $timeout=42);
77 $descriptorSpec = [["pipe", "r"], ["pipe", "w"], ["pipe", "w"]];
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitConfigInternal.h411 #define SLJIT_W(w) (w##ll) argument
413 #define SLJIT_W(w) (w##l) argument
416 #define SLJIT_W(w) (w) argument
H A DsljitNativeX86_common.c84 #define CHECK_EXTRA_REGS(p, w, do) \ argument
86 w = (2 * SSIZE_OF(sw)) + ((p) - SLJIT_R3) * SSIZE_OF(sw); \
144 #define CHECK_EXTRA_REGS(p, w, do) argument
/php-src/ext/pcre/tests/
H A D004.phpt6 …(?:(?:unsigned|struct)\s+)?\w+)(?:\s*(\*+)\s+|\s+(\**))(\w+(?:\[\s*\w*\s*\])?)\s*(?:(=)[^,;]+)?((?…
9 var_dump(preg_match_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', '&a, b,…
15 var_dump(preg_split('/PHP_(?:NAMED_)?(?:FUNCTION|METHOD)\s*\((\w+(?:,\s*\w+)?)\)/S', "PHP_FUNCTION(…
H A D005.phpt68 $gcc_regex = '/^((.+)(\(\.text\+0x[[:xdigit:]]+\))?: In function [`\'](\w+)\':\s+)?'.
H A Dbug27011.phpt6 var_dump(preg_match_all('|(\w+)://([^\s"<]*[\w+#?/&=])|', "This is a text string", $matches, PREG_S…
H A Dbug38600.phpt7 var_dump(preg_match('/(?<!\w)(0x[\p{N}]+[lL]?|[\p{Nd}]+(e[\p{Nd}]*)?[lLdDfF]?)(?!\w)/', $foo, $m));
H A Dbug40909.phpt7 "/\s([\w_\.\/]+)(?:=([\'\"]?(?:[\w\d\s\?=\(\)\.,'_#\/\\:;&-]|(?:\\\\\"|\\\')?)+[\'\"]?))?/";
H A Dbug52971.phpt12 $pattern = '/[^\w]wasser/iu';
H A Dbug72685.phpt15 while (preg_match('/\G\w/u', $str, $m, 0, $pos)) ++$pos;
H A Dbug76512.phpt2 Bug #76512 (\w no longer includes unicode characters)
5 var_dump(preg_match('/\w/u', 'ä'));
H A Dctype_back_to_c.phpt5 if (setlocale(LC_ALL, 'invalid') === 'invalid') { die('skip setlocale() is broken /w musl'); }
11 var_dump(preg_match('/\w/', "\xe4"));
13 var_dump(preg_match('/\w/', "\xe4"));
H A Dgh11956.phpt7 preg_match( '/<(\w+)[\s\w\-]+ id="S44_i89ew">/', '<br><div id="S44_i89ew">', $matches );
H A Dlocales.phpt5 if (setlocale(LC_ALL, 'invalid') === 'invalid') { die('skip setlocale() is broken /w musl'); }
15 var_dump(preg_match('/^\w{6}$/', 'a�����'));
18 var_dump(preg_match('/^\w{6}$/', 'a�����'));
21 var_dump(preg_match('/^\w{6}$/', 'a�����'));
H A Dpreg_grep_basic.phpt10 var_dump(preg_grep('@^HTTP(.*?)\w{2,}$@i', $array)); //finds a string starting with http (regardles…
11 var_dump(preg_grep('@(/\w+\.*/*)+@', $array)); //finds / followed by one or more of a-z, A-Z and 0-…
12 …eg_grep('@^http://[^w]{3}.*$@i', $array)); //finds http:// (at the beginning of a string) not foll…
14 var_dump(preg_grep('@^HTTP(.*?)\w{2,}$@i', $array, PREG_GREP_INVERT)); //same as first example but …
H A Dpreg_match_basic.phpt9 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 Dpreg_match_basic_edit.phpt10 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 Dpreg_match_latin.phpt5 preg_match('/^[\w\p{Cyrillic}\s\-\']+$/u', 'latin', $test1);
6 preg_match('/^[\w\p{Cyrillic}\s\-\']+$/u', 'кириллица', $test2);
7 preg_match('/^[\w\s\-\']+$/u', 'latin', $test3);
H A Dpreg_quote_basic.phpt13 var_dump(preg_match('/^[tT]\w{6} - ' . preg_quote($string_before, '/') . ' [a-z]*\s*work$/', $strin…
H A Dpreg_replace2.phpt16 var_dump(preg_replace(array('/[\w]+/'), array('$'), array('xyz', 'bdbd')));
H A Dpreg_replace_basic.phpt12 var_dump(preg_replace('<\b[hH]\w{2,4}>', 'Bonjour', $string)); //finds h or H at the beginning of a…
13 var_dump(preg_replace('<(\w)\s*-\s*(\w)>', '\\1. \\2', $string)); //finds dashes with an indefinite…
14 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>', '\\1 at \\2 dot \\3 dot \\4', 'jo…
H A Dpreg_replace_callback2.phpt11 var_dump(preg_replace_callback('/\w/', 'f', 'z'));
18 var_dump(preg_replace_callback('@\b\w{1,2}\b@', 'g', array('a b3 bcd', 'v' => 'aksfjk', 12 => 'aa b…
H A Dpreg_replace_callback_array2.phpt22 var_dump(preg_replace_callback_array(array('/\w' => 'f'), 'z'));
25 var_dump(preg_replace_callback_array(array('/\w/' => 'f', '/.*/' => 'f'), 'z'));
H A Dpreg_replace_edit_basic.phpt17 var_dump(preg_replace('<\b[hH]\w{2,4}>',
20 var_dump(preg_replace('<(\w)\s*-\s*(\w)>',
23 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>',

Completed in 39 milliseconds

12345678910>>...40