/PHP-7.4/ext/mbstring/ |
H A D | php_unicode.c | 152 if (code >= 0x61 && code <= 0x7A) { in php_unicode_toupper_raw() 172 if (code >= 0x41 && code <= 0x5A) { in php_unicode_tolower_raw() 206 if (code >= 0x41 && code <= 0x5A) { in php_unicode_tofold_raw() 226 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_simple() 233 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_simple() 240 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_simple() 247 code = php_unicode_tofold_raw(code, enc); in php_unicode_tofold_simple() 256 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_full() 268 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_full() 280 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_full() [all …]
|
/PHP-7.4/ext/ctype/tests/ |
H A D | ctype_alpha_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 65 is alphabetic 33 character code 66 is alphabetic 34 character code 67 is alphabetic 35 character code 68 is alphabetic 36 character code 69 is alphabetic 37 character code 70 is alphabetic 38 character code 71 is alphabetic 39 character code 72 is alphabetic 40 character code 73 is alphabetic [all …]
|
H A D | ctype_print_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 32 is a printable character 33 character code 33 is a printable character 34 character code 34 is a printable character 35 character code 35 is a printable character 36 character code 36 is a printable character 37 character code 37 is a printable character 38 character code 38 is a printable character 39 character code 39 is a printable character 40 character code 40 is a printable character [all …]
|
H A D | ctype_graph_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 33 is a printable character 33 character code 34 is a printable character 34 character code 35 is a printable character 35 character code 36 is a printable character 36 character code 37 is a printable character 37 character code 38 is a printable character 38 character code 39 is a printable character 39 character code 40 is a printable character 40 character code 41 is a printable character [all …]
|
H A D | ctype_alnum_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 48 is alpha numeric 33 character code 49 is alpha numeric 34 character code 50 is alpha numeric 35 character code 51 is alpha numeric 36 character code 52 is alpha numeric 37 character code 53 is alpha numeric 38 character code 54 is alpha numeric 39 character code 55 is alpha numeric 40 character code 56 is alpha numeric [all …]
|
H A D | ctype_punct_variation2.phpt | 10 * Source code: ext/ctype/ctype.c 33 character code 33 is punctuation 34 character code 34 is punctuation 35 character code 35 is punctuation 36 character code 36 is punctuation 37 character code 37 is punctuation 38 character code 38 is punctuation 39 character code 39 is punctuation 40 character code 40 is punctuation 41 character code 41 is punctuation [all …]
|
H A D | ctype_cntrl_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 0 is control character 33 character code 1 is control character 34 character code 2 is control character 35 character code 3 is control character 36 character code 4 is control character 37 character code 5 is control character 38 character code 6 is control character 39 character code 7 is control character 40 character code 8 is control character [all …]
|
H A D | ctype_upper_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 31 character code 65 is a uppercase character 32 character code 66 is a uppercase character 33 character code 67 is a uppercase character 34 character code 68 is a uppercase character 35 character code 69 is a uppercase character 36 character code 70 is a uppercase character 37 character code 71 is a uppercase character 38 character code 72 is a uppercase character 39 character code 73 is a uppercase character [all …]
|
H A D | ctype_lower_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 97 is a lower case character 33 character code 98 is a lower case character 34 character code 99 is a lower case character 35 character code 100 is a lower case character 36 character code 101 is a lower case character 37 character code 102 is a lower case character 38 character code 103 is a lower case character 39 character code 104 is a lower case character 40 character code 105 is a lower case character [all …]
|
H A D | ctype_xdigit_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 48 is a hexadecimal 'digit' 33 character code 49 is a hexadecimal 'digit' 34 character code 50 is a hexadecimal 'digit' 35 character code 51 is a hexadecimal 'digit' 36 character code 52 is a hexadecimal 'digit' 37 character code 53 is a hexadecimal 'digit' 38 character code 54 is a hexadecimal 'digit' 39 character code 55 is a hexadecimal 'digit' 40 character code 56 is a hexadecimal 'digit' [all …]
|
H A D | ctype_digit_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 32 character code 48 is a numeric digit 33 character code 49 is a numeric digit 34 character code 50 is a numeric digit 35 character code 51 is a numeric digit 36 character code 52 is a numeric digit 37 character code 53 is a numeric digit 38 character code 54 is a numeric digit 39 character code 55 is a numeric digit 40 character code 56 is a numeric digit [all …]
|
H A D | ctype_space_variation2.phpt | 9 * Source code: ext/ctype/ctype.c 23 echo "character code $c is a space character\n"; 31 character code 9 is a space character 32 character code 10 is a space character 33 character code 11 is a space character 34 character code 12 is a space character 35 character code 13 is a space character 36 character code 32 is a space character
|
/PHP-7.4/ext/pcre/pcre2lib/ |
H A D | pcre2_find_bracket.c | 74 PCRE2_UCHAR c = *code; in PRIV() 83 if (c == OP_XCLASS) code += GET(code, 1); in PRIV() 84 else if (c == OP_CALLOUT_STR) code += GET(code, 1 + 2*LINK_SIZE); in PRIV() 91 code += PRIV(OP_lengths)[c]; in PRIV() 101 code += PRIV(OP_lengths)[c]; in PRIV() 122 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in PRIV() 129 if (code[1 + IMM2_SIZE] == OP_PROP || code[1 + IMM2_SIZE] == OP_NOTPROP) in PRIV() 130 code += 2; in PRIV() 138 code += code[1]; in PRIV() 144 code += PRIV(OP_lengths)[c]; in PRIV() [all …]
|
H A D | pcre2_printint.c | 355 code++; in pcre2_printint() 356 code += 1 + print_char(f, code, utf); in pcre2_printint() 366 code++; in pcre2_printint() 367 code += 1 + print_char(f, code, utf); in pcre2_printint() 412 fprintf(f, "%3d %s", GET2(code,1), OP_names[*code]); in pcre2_printint() 482 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) in pcre2_printint() 596 ccode = code + OP_lengths[*code]; in pcre2_printint() 609 ccode = code + OP_lengths[*code]; in pcre2_printint() 614 GET(code, 1), GET(code, 1 + LINK_SIZE)); in pcre2_printint() 811 print_custring_bylen(f, code + 2, code[1]); in pcre2_printint() [all …]
|
H A D | pcre2_auto_possess.c | 326 code++; in get_chr_property_list() 460 end = code + GET(code, 0) - 1; in get_chr_property_list() 560 code += GET(code, 1 + 2*LINK_SIZE); in compare_opcodes() 568 do code += GET(code, 1); while (*code == OP_ALT); in compare_opcodes() 602 switch(*(code - GET(code, 1))) in compare_opcodes() 649 next_code = code + GET(code, 1); in compare_opcodes() 1237 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in PRIV() 1249 code += GET(code, 1 + 2*LINK_SIZE); in PRIV() 1254 code += GET(code, 1); in PRIV() 1263 code += code[1]; in PRIV() [all …]
|
/PHP-7.4/ext/com_dotnet/tests/ |
H A D | variants.phpt | 78 code 80020005 84 code 80020005 89 code 80020005 94 code 80020005 99 code 80020005 104 code 80020005 109 code 80020005 114 code 80020005 119 code 80020005 124 code 80020005 [all …]
|
H A D | variants_x64.phpt | 81 code 80020005 87 code 80020005 92 code 80020005 97 code 80020005 102 code 80020005 107 code 80020005 112 code 80020005 117 code 80020005 122 code 80020005 127 code 80020005 [all …]
|
/PHP-7.4/scripts/dev/ |
H A D | tidy.php | 58 $code = stripTrailingWhitespace($code); variable 62 $code = stripTrailingWhitespace($code); variable 63 $code = reindentToSpaces($code); variable 73 if ($origCode !== $code) { 74 file_put_contents($path, $code); 79 return preg_replace('/\h+$/m', '', $code); 82 function reindentToTabs(string $code): string { argument 89 }, $code); 109 }, $code); 115 return $code; [all …]
|
/PHP-7.4/ext/standard/ |
H A D | soundex.c | 31 size_t i, _small, str_len, code, last; in PHP_FUNCTION() local 77 code = toupper((int)(unsigned char)str[i]); in PHP_FUNCTION() 78 if (code >= 'A' && code <= 'Z') { in PHP_FUNCTION() 81 soundex[_small++] = (char)code; in PHP_FUNCTION() 82 last = soundex_table[code - 'A']; in PHP_FUNCTION() 88 code = soundex_table[code - 'A']; in PHP_FUNCTION() 89 if (code != last) { in PHP_FUNCTION() 90 if (code != 0) { in PHP_FUNCTION() 91 soundex[_small++] = (char)code; in PHP_FUNCTION() 93 last = code; in PHP_FUNCTION()
|
/PHP-7.4/ext/standard/tests/file/windows_mb_path/ |
H A D | test_cp874_0.phpt | 51 Active code page: %d 56 Active code page: %d 58 Active code page: %d 63 Active code page: %d 65 Active code page: %d 70 Active code page: %d 72 Active code page: %d 77 Active code page: %d 79 Active code page: %d 84 Active code page: %d [all …]
|
H A D | test_cp874_to_utf8_0.phpt | 48 Active code page: %d 53 Active code page: %d 55 Active code page: %d 60 Active code page: %d 62 Active code page: %d 67 Active code page: %d 69 Active code page: %d 74 Active code page: %d 76 Active code page: %d 81 Active code page: %d [all …]
|
/PHP-7.4/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_errmode.phpt | 48 if ($code != '42000') 49 printf("[005] Expecting SQL code 42000 got '%s'\n", $code); 50 if ($code !== $info[0]) 52 $code, $info[0]); 64 if ($code != '42000') 65 printf("[009] Expecting SQL code 42000 got '%s'\n", $code); 68 $code, $info[0]); 84 printf("[013] Expecting SQL code 42000 got '%s'\n", $code); 87 $code, $info[0]); 122 printf("[021] Expecting SQL code 42000 got '%s'\n", $code); [all …]
|
/PHP-7.4/ext/mbstring/ucgendat/ |
H A D | ucgendat.php | 148 $this->propRanges[$propIdx][] = new Range($code, $code); 223 $code = intval($fields[0], 16); 248 $data->addProp($code, $bidiClass); 279 $code = intval($fields[0], 16); 297 $existingFoldCode = $data->caseMaps['fold'][$code] ?? $code; 298 $data->caseMaps['fold'][$code] = array_merge([$code], $foldCodes); 306 $simpleCaseCode = $data->caseMaps[$type][$code] ?? $code; 315 && ($data->caseMaps['upper'][$code] ?? $code) != $code) { 316 $data->caseMaps['title'][$code] = $code; 334 $code = intval($fields[0], 16); [all …]
|
H A D | uctest.php | 76 $code = intval($fields[0], 16); 80 testSimpleCaseMap(MB_CASE_UPPER_SIMPLE, $code, $upperCase); 81 testSimpleCaseMap(MB_CASE_LOWER_SIMPLE, $code, $lowerCase); 89 $chr = mb_chr($code); 101 $code = intval($fields[0], 16); 105 testSimpleCaseMap(MB_CASE_FOLD_SIMPLE, $code, $foldCode); 108 testCaseMap(MB_CASE_FOLD, $code, $foldCodes); 117 $code = intval($fields[0], 16); 128 testCaseMap(MB_CASE_LOWER, $code, $lower); 129 testCaseMap(MB_CASE_UPPER, $code, $upper); [all …]
|
/PHP-7.4/ext/standard/tests/streams/ |
H A D | bug64433.phpt | 22 foreach($codes as $code) { 23 echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1"); 32 foreach($codes as $code) { 33 …echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1",… 42 foreach($codes as $code) { 43 …echo "$code: ".file_get_contents("http://".PHP_CLI_SERVER_ADDRESS."/index.php?status=$code&loc=1",…
|