Home
last modified time | relevance | path

Searched refs:word (Results 26 – 50 of 64) sorted by path

123

/php-src/ext/intl/tests/
H A Duconverter_oop_callback.phpt29 foreach(array("regular", "irregul\xC1\xA1r", "\xC2\xA1unsupported!") as $word) {
30 $c->convert($word);
H A Duconverter_oop_callback2.phpt29 foreach(array("regular", "irregul\xC1\xA1r", "\xC2\xA1unsupported!") as $word) {
30 $c->convert($word);
/php-src/ext/mbstring/tests/
H A Dbug65544.phpt2 Bug #65544: mb title case conversion-first word in quotation isn't capitalized
H A Dmb_convert_case_various_mode.phpt32 // When checking whether capital sigma is at the end of a word or not, we skip over
45 // When scanning forward to confirm if capital sigma is at the end of a word or not,
H A Dmb_decode_mimeheader_variation2.phpt28 foreach ($encoded_words as $word) {
29 var_dump(bin2hex(mb_decode_mimeheader($word)));
H A Dmb_decode_mimeheader_variation4.phpt27 // Handle = which doesn't initiate a valid encoded word
31 // Encoded word which should not be accepted
35 // Encoded word with invalid charset name, and input string ends with whitespace
48 // Empty encoded word
52 // Encoded word with just one invalid Base64 byte
56 // Encoded word with an invalid Base64 byte followed by a valid Base64 byte
60 // Empty encoded word with a ? which looks like it should be terminator, but = is missing
64 // Encoded word with just one invalid Base64 byte, but this time properly terminated
68 // Invalid encoded word, followed immediately by valid encoded word
72 // Another example of invalid encoded word followed immediately by valid encoded word
H A Dmb_decode_mimeheader_variation5.phpt8 // RFC 2047 says that in a QPrint-encoded MIME encoded word, underscores should be converted to spa…
H A Dmb_encode_mimeheader_basic4.phpt41 // Try multiple spaces after a word
50 // when entire input is one ASCII 'word' and high indent value makes us consider
59 // Regression test: include space after ASCII word when switching to Base64 encoding
86 // we may need to emit a linefeed before we start the next MIME encoded word
106 // Legacy implementation would always include at least one wchar in each encoded word;
H A Dmb_encode_mimeheader_indent.phpt8 …* Description: Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded…
H A Dmb_encode_mimeheader_variation6.phpt8 …* Description: Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded…
H A Dmb_ereg_named_subpatterns.phpt12 mb_ereg('(?<wsp>\s*)(?<word>\w+)', ' 中国', $m);
14 mb_ereg('(?<wsp>\s*)(?<word>\w+)', '国', $m);
16 mb_ereg('(\s*)(?<word>\w+)', ' 中国', $m);
29 ["word"]=>
41 ["word"]=>
49 ["word"]=>
H A Dmb_ereg_replace_callback.phpt17 echo mb_ereg_replace_callback('(?<word>\w+) (?<digit>\d+).*', function ($m) {
18 return sprintf("%s-%s", $m['digit'], $m['word']);
H A Dmb_ereg_replace_named_subpatterns.phpt12 // \k<word> syntax
14 // \k'word' syntax
15 echo mb_ereg_replace('(?<word>[a-z]+)',"<\k'word'>", 'abc def ghi'), PHP_EOL;
H A Dmb_ereg_search_named_subpatterns_1.phpt14 mb_ereg_search('(?<wsp>\s*)(?<word>\w+)(?<punct>[?!])');
31 ["word"]=>
H A Dmb_ereg_search_named_subpatterns_2.phpt14 mb_ereg_search('(?<wsp>\s*)(?<word>\w+)(?<punct>[?!])');
29 ["word"]=>
H A Dmb_strtolower_basic.phpt46 // When checking whether capital sigma is at the end of a word or not, we skip over
59 // When scanning forward to confirm if capital sigma is at the end of a word or not,
/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_x86.lua373 byte = "b", word = "w", dword = "d", qword = "q", oword = "o", yword = "y",
H A Ddynasm.lua221 local function definesubst_one(word)
222 local subst = map_def[word]
223 if subst then gotsubst = word; return subst else return word end
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc285 | op word op1
306 | op word op1, Rw(op2)
327 | op word op1, op2
348 | op word op1, (op2 & 0xffff)
369 | op Rw(op1), word op2
4743 | ASM_TXT_TMEM_OP bsr, Rw(def_reg), word, mem
4750 | ASM_TXT_TMEM_OP bsf, Rw(def_reg), word, mem
6720 | ASM_TXT_TMEM_OP movsx, Rd(def_reg), word, mem
6725 | ASM_TXT_TMEM_OP movsx, Rq(def_reg), word, mem
6819 | ASM_TXT_TMEM_OP movzx, Rd(def_reg), word, mem
[all …]
/php-src/ext/openssl/tests/
H A Dopenssl_pbkdf2_basic.phpt20 var_dump(bin2hex(openssl_pbkdf2("pass\0word", "sa\0lt", 16, 4096)));
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitNativeRISCV_common.c1061 #define WORD word
1070 sljit_ins word = (sljit_ins)(op & SLJIT_32) >> 5; in emit_clz_ctz() local
1156 sljit_ins word = (sljit_ins)(op & SLJIT_32) >> 5; in emit_rev16() local
1193 sljit_ins word = (sljit_ins)(op & SLJIT_32) >> 5; in emit_single_op() local
1524 if (word) { in emit_single_op()
1757 sljit_ins word = (sljit_ins)(op & SLJIT_32) >> 5; in sljit_emit_op0() local
1759 SLJIT_ASSERT(word == 0 || word == 0x8); in sljit_emit_op0()
1953 sljit_ins word = (sljit_ins)(op & SLJIT_32) >> 5; in sljit_emit_shift_into() local
2809 sljit_ins word = (sljit_ins)(type & SLJIT_32) >> 5; in sljit_emit_select() local
2852 if (word) in sljit_emit_select()
/php-src/ext/pcre/tests/
H A Dbug34790.phpt6 $string = 'what the word and the other word the';
7 preg_match_all('/(?P<word>the)/', $string, $matches);
8 return $matches['word'];
H A Dpreg_replace_basic.phpt12 …[hH]\w{2,4}>', 'Bonjour', $string)); //finds h or H at the beginning of a word followed by 2-4 cha…
H A Dpreg_replace_edit_basic.phpt18 …'Bonjour', $string)); //finds h or H at the beginning of a word followed by 2-4 characters an…
/php-src/ext/pdo_pgsql/tests/
H A Dbug62479.phpt62 $sql = sprintf($template, "my pass''word");
65 $testConn = new PDO($config['ENV']['PDOTEST_DSN'], $user, "my pass'word");

Completed in 56 milliseconds

123