/php-src/ext/ctype/tests/ |
H A D | ctype_alpha_variation2.phpt | 26 character code 65 is alphabetic 27 character code 66 is alphabetic 28 character code 67 is alphabetic 29 character code 68 is alphabetic 30 character code 69 is alphabetic 31 character code 70 is alphabetic 32 character code 71 is alphabetic 33 character code 72 is alphabetic 34 character code 73 is alphabetic 35 character code 74 is alphabetic [all …]
|
H A D | ctype_alnum_variation2.phpt | 26 character code 48 is alpha numeric 27 character code 49 is alpha numeric 28 character code 50 is alpha numeric 29 character code 51 is alpha numeric 30 character code 52 is alpha numeric 31 character code 53 is alpha numeric 32 character code 54 is alpha numeric 33 character code 55 is alpha numeric 34 character code 56 is alpha numeric 35 character code 57 is alpha numeric [all …]
|
H A D | ctype_print_variation2.phpt | 26 character code 32 is a printable character 27 character code 33 is a printable character 28 character code 34 is a printable character 29 character code 35 is a printable character 30 character code 36 is a printable character 31 character code 37 is a printable character 32 character code 38 is a printable character 33 character code 39 is a printable character 34 character code 40 is a printable character 35 character code 41 is a printable character [all …]
|
H A D | ctype_graph_variation2.phpt | 26 character code 33 is a printable character 27 character code 34 is a printable character 28 character code 35 is a printable character 29 character code 36 is a printable character 30 character code 37 is a printable character 31 character code 38 is a printable character 32 character code 39 is a printable character 33 character code 40 is a printable character 34 character code 41 is a printable character 35 character code 42 is a printable character [all …]
|
H A D | ctype_punct_variation2.phpt | 26 character code 33 is punctuation 27 character code 34 is punctuation 28 character code 35 is punctuation 29 character code 36 is punctuation 30 character code 37 is punctuation 31 character code 38 is punctuation 32 character code 39 is punctuation 33 character code 40 is punctuation 34 character code 41 is punctuation 35 character code 42 is punctuation [all …]
|
H A D | ctype_cntrl_variation2.phpt | 26 character code 0 is control character 27 character code 1 is control character 28 character code 2 is control character 29 character code 3 is control character 30 character code 4 is control character 31 character code 5 is control character 32 character code 6 is control character 33 character code 7 is control character 34 character code 8 is control character 35 character code 9 is control character [all …]
|
H A D | ctype_upper_variation2.phpt | 25 character code 65 is a uppercase character 26 character code 66 is a uppercase character 27 character code 67 is a uppercase character 28 character code 68 is a uppercase character 29 character code 69 is a uppercase character 30 character code 70 is a uppercase character 31 character code 71 is a uppercase character 32 character code 72 is a uppercase character 33 character code 73 is a uppercase character 34 character code 74 is a uppercase character [all …]
|
H A D | ctype_lower_variation2.phpt | 26 character code 97 is a lower case character 27 character code 98 is a lower case character 28 character code 99 is a lower case character 29 character code 100 is a lower case character 30 character code 101 is a lower case character 31 character code 102 is a lower case character 32 character code 103 is a lower case character 33 character code 104 is a lower case character 34 character code 105 is a lower case character 35 character code 106 is a lower case character [all …]
|
H A D | ctype_xdigit_variation2.phpt | 26 character code 48 is a hexadecimal 'digit' 27 character code 49 is a hexadecimal 'digit' 28 character code 50 is a hexadecimal 'digit' 29 character code 51 is a hexadecimal 'digit' 30 character code 52 is a hexadecimal 'digit' 31 character code 53 is a hexadecimal 'digit' 32 character code 54 is a hexadecimal 'digit' 33 character code 55 is a hexadecimal 'digit' 34 character code 56 is a hexadecimal 'digit' 35 character code 57 is a hexadecimal 'digit' [all …]
|
H A D | ctype_digit_variation2.phpt | 18 echo "character code $i is a numeric digit\n"; 26 character code 48 is a numeric digit 27 character code 49 is a numeric digit 28 character code 50 is a numeric digit 29 character code 51 is a numeric digit 30 character code 52 is a numeric digit 31 character code 53 is a numeric digit 32 character code 54 is a numeric digit 33 character code 55 is a numeric digit 34 character code 56 is a numeric digit [all …]
|
H A D | ctype_space_variation2.phpt | 18 echo "character code $c is a space character\n"; 25 character code 9 is a space character 26 character code 10 is a space character 27 character code 11 is a space character 28 character code 12 is a space character 29 character code 13 is a space character 30 character code 32 is a space character
|
/php-src/scripts/dev/ |
H A D | tidy.php | 68 $code = stripTrailingWhitespace($code); variable 72 $code = stripTrailingWhitespace($code); variable 73 $code = reindentToSpaces($code); variable 75 $code = transformTestCode($code, function(string $code) { variable 76 $code = stripTrailingWhitespace($code); variable 77 $code = reindentToSpaces($code); variable 78 return $code; 98 }, $code); 118 }, $code); 124 return $code; [all …]
|
/php-src/ext/mbstring/ |
H A D | php_unicode.c | 129 if (code >= 0x61 && code <= 0x7A) { in php_unicode_toupper_raw() 151 if (code >= 0x41 && code <= 0x5A) { in php_unicode_tolower_raw() 185 if (code >= 0x41 && code <= 0x5A) { in php_unicode_tofold_raw() 205 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_simple() 209 return code; in php_unicode_tolower_simple() 212 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_simple() 216 return code; in php_unicode_toupper_simple() 219 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_simple() 223 return code; in php_unicode_totitle_simple() 226 code = php_unicode_tofold_raw(code, enc); in php_unicode_tofold_simple() [all …]
|
/php-src/ext/com_dotnet/tests/ |
H A D | variants.phpt | 79 code 80020005 85 code 80020005 90 code 80020005 95 code 80020005 100 code 80020005 105 code 80020005 110 code 80020005 115 code 80020005 120 code 80020005 125 code 80020005 [all …]
|
H A D | variants_x64.phpt | 82 code 80020005 88 code 80020005 93 code 80020005 98 code 80020005 103 code 80020005 108 code 80020005 113 code 80020005 118 code 80020005 123 code 80020005 128 code 80020005 [all …]
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_printint.c | 307 const char *s = get_ucpname(code[1], code[2]); in print_prop() 385 code++; in pcre2_printint() 386 code += 1 + print_char(f, code, utf); in pcre2_printint() 396 code++; in pcre2_printint() 397 code += 1 + print_char(f, code, utf); in pcre2_printint() 524 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) in pcre2_printint() 638 ccode = code + OP_lengths[*code]; in pcre2_printint() 651 ccode = code + OP_lengths[*code]; in pcre2_printint() 656 GET(code, 1), GET(code, 1 + LINK_SIZE)); in pcre2_printint() 861 print_custring_bylen(f, code + 2, code[1]); in pcre2_printint() [all …]
|
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_auto_possess.c | 343 code++; in get_chr_property_list() 477 end = code + GET(code, 0) - 1; in get_chr_property_list() 580 code += GET(code, 1 + 2*LINK_SIZE); in compare_opcodes() 588 do code += GET(code, 1); while (*code == OP_ALT); in compare_opcodes() 622 bracode = code - GET(code, 1); in compare_opcodes() 673 next_code = code + GET(code, 1); in compare_opcodes() 1265 if (code[1] == OP_PROP || code[1] == OP_NOTPROP) code += 2; in PRIV() 1277 code += GET(code, 1 + 2*LINK_SIZE); in PRIV() 1282 code += GET(code, 1); in PRIV() 1291 code += code[1]; in PRIV() [all …]
|
/php-src/ext/standard/ |
H A D | soundex.c | 26 size_t i, _small, str_len, code, last; in PHP_FUNCTION() local 68 code = toupper((int)(unsigned char)str[i]); in PHP_FUNCTION() 69 if (code >= 'A' && code <= 'Z') { in PHP_FUNCTION() 72 soundex[_small++] = (char)code; in PHP_FUNCTION() 73 last = soundex_table[code - 'A']; in PHP_FUNCTION() 79 code = soundex_table[code - 'A']; in PHP_FUNCTION() 80 if (code != last) { in PHP_FUNCTION() 81 if (code != 0) { in PHP_FUNCTION() 82 soundex[_small++] = (char)code; in PHP_FUNCTION() 84 last = code; in PHP_FUNCTION()
|
/php-src/ext/standard/tests/file/windows_mb_path/ |
H A D | test_cp874_0.phpt | 50 Active code page: %d 55 Active code page: %d 57 Active code page: %d 62 Active code page: %d 64 Active code page: %d 69 Active code page: %d 71 Active code page: %d 76 Active code page: %d 78 Active code page: %d 83 Active code page: %d [all …]
|
H A D | test_cp874_to_utf8_0.phpt | 47 Active code page: %d 52 Active code page: %d 54 Active code page: %d 59 Active code page: %d 61 Active code page: %d 66 Active code page: %d 68 Active code page: %d 73 Active code page: %d 75 Active code page: %d 80 Active code page: %d [all …]
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_errmode.phpt | 42 $code = $db->errorCode(); 45 if ($code != '42000') 46 printf("[005] Expecting SQL code 42000 got '%s'\n", $code); 47 if ($code !== $info[0]) 49 $code, $info[0]); 58 $code = $db->errorCode(); 61 if ($code != '42000') 62 printf("[009] Expecting SQL code 42000 got '%s'\n", $code); 63 if ($code !== $info[0]) 80 printf("[013] Expecting SQL code 42000 got '%s'\n", $code); [all …]
|
/php-src/ext/mbstring/ucgendat/ |
H A D | ucgendat.php | 163 $this->propRanges[$propIdx][] = new Range($code, $code); 238 $code = intval($fields[0], 16); 294 $code = intval($fields[0], 16); 312 $existingFoldCode = $data->caseMaps['fold'][$code] ?? $code; 313 $data->caseMaps['fold'][$code] = array_merge([$code], $foldCodes); 321 $simpleCaseCode = $data->caseMaps[$type][$code] ?? $code; 330 && ($data->caseMaps['upper'][$code] ?? $code) != $code) { 331 $data->caseMaps['title'][$code] = $code; 349 $code = intval($fields[0], 16); 427 $wideRanges[] = new Range($code, $code); [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-src/sapi/fuzzer/ |
H A D | generate_parser_corpus.php | 15 $code = file_get_contents($file); variable 16 if (!preg_match('/--FILE--\R(.*?)\R--([_A-Z]+)--/s', $code, $matches)) continue; 17 $code = $matches[1]; variable 18 if (strlen($code) > $maxLen) continue; 23 file_put_contents($outFile, $code);
|