Home
last modified time | relevance | path

Searched refs:code (Results 251 – 275 of 790) sorted by path

1...<<11121314151617181920>>...32

/php-src/ext/mbstring/
H A Dphp_unicode.h77 MBSTRING_API bool php_unicode_is_prop(unsigned long code, ...);
78 MBSTRING_API bool php_unicode_is_prop1(unsigned long code, int prop);
98 static inline int php_unicode_is_lower(unsigned long code) { in php_unicode_is_lower() argument
99 if (code < 0x80) { in php_unicode_is_lower()
100 return code >= 0x61 && code <= 0x7A; in php_unicode_is_lower()
102 return php_unicode_is_prop1(code, UC_LL); in php_unicode_is_lower()
106 static inline int php_unicode_is_upper(unsigned long code) { in php_unicode_is_upper() argument
107 if (code < 0x80) { in php_unicode_is_upper()
108 return code >= 0x41 && code <= 0x5A; in php_unicode_is_upper()
110 return php_unicode_is_prop1(code, UC_LU); in php_unicode_is_upper()
/php-src/ext/mbstring/tests/
H A Dcp5022x_encoding.phpt15 /* Convert CP932's default Shift-JIS representation to kuten code
137 testValid("\x0F" . chr($i), "\x00" . chr($i), 'CP50222', false); /* 0xF is 'Shift Out' code */
166 testValid("\x1B(J\x0E" . $kana, $utf16BE, 'CP50222', false); /* 0xE is 'Shift In' code */
267 /* Unicode codepoint for halfwidth katakana -> kuten code for ordinary katakana */
385 // In CP50220, two codepoints can be collapsed into a single kuten code in some cases
/php-src/ext/mbstring/tests/data/
H A D8859-1.txt19 # Column #1 is the ISO/IEC 8859-1 code (in hex as 0xXX)
H A D8859-10.txt19 # Column #1 is the ISO/IEC 8859-10 code (in hex as 0xXX)
H A D8859-11.txt22 # Column #1 is the ISO/IEC 8859-11 code (in hex as 0xXX)
H A D8859-13.txt19 # Column #1 is the ISO/IEC 8859-13 code (in hex as 0xXX)
H A D8859-14.txt20 # Column #1 is the ISO/IEC 8859-14 code (in hex as 0xXX)
H A D8859-15.txt20 # Column #1 is the ISO/IEC 8859-15 code (in hex as 0xXX)
H A D8859-16.txt21 # Column #1 is the ISO/IEC 8859-16 code (in hex as 0xXX)
H A D8859-2.txt19 # Column #1 is the ISO/IEC 8859-2 code (in hex as 0xXX)
H A D8859-3.txt19 # Column #1 is the ISO/IEC 8859-3 code (in hex as 0xXX)
H A D8859-4.txt19 # Column #1 is the ISO/IEC 8859-4 code (in hex as 0xXX)
H A D8859-5.txt19 # Column #1 is the ISO/IEC 8859-5 code (in hex as 0xXX)
H A D8859-6.txt19 # Column #1 is the ISO/IEC 8859-6 code (in hex as 0xXX)
H A D8859-7.txt23 # Column #1 is the ISO 8859-7 code (in hex as 0xXX)
H A D8859-8.txt19 # Column #1 is the ISO/IEC 8859-8 code (in hex as 0xXX)
H A D8859-9.txt19 # Column #1 is the ISO/IEC 8859-9 code (in hex as 0xXX)
H A DBIG5.txt18 # for all uses. For more information on the mappings between various code
61 # Column #1 is the BIG5 code (in hex as 0xXXXX)
66 # where XXXX is the code point. Including all these
H A DCP1251.txt13 # Column #1 is the cp1251 code (in hex)
H A DCP1252.txt13 # Column #1 is the cp1252 code (in hex)
H A DCP1254.txt13 # Column #1 is the cp1254 code (in hex)
H A DCP850.txt12 # Column #1 is the cp850_DOSLatin1 code (in hex)
H A DCP866.txt12 # Column #1 is the cp866_DOSCyrillicRussian code (in hex)
H A DCP932.txt13 # Column #1 is the cp932 code (in hex)
H A DCP936.txt13 # Column #1 is the cp936 code (in hex)

Completed in 197 milliseconds

1...<<11121314151617181920>>...32