Home
last modified time | relevance | path

Searched refs:codepoint (Results 1 – 19 of 19) sorted by relevance

/PHP-7.3/ext/zip/lib/
H A Dzip_utf-8.c179 _zip_unicode_to_utf8_len(zip_uint32_t codepoint) in _zip_unicode_to_utf8_len() argument
181 if (codepoint < 0x0080) in _zip_unicode_to_utf8_len()
183 if (codepoint < 0x0800) in _zip_unicode_to_utf8_len()
185 if (codepoint < 0x10000) in _zip_unicode_to_utf8_len()
192 _zip_unicode_to_utf8(zip_uint32_t codepoint, zip_uint8_t *buf) in _zip_unicode_to_utf8() argument
194 if (codepoint < 0x0080) { in _zip_unicode_to_utf8()
195 buf[0] = codepoint & 0xff; in _zip_unicode_to_utf8()
198 if (codepoint < 0x0800) { in _zip_unicode_to_utf8()
200 buf[1] = (zip_uint8_t)(UTF_8_CONTINUE_MATCH | (codepoint & 0x3f)); in _zip_unicode_to_utf8()
203 if (codepoint < 0x10000) { in _zip_unicode_to_utf8()
[all …]
/PHP-7.3/tests/lang/string/
H A Dunicode_escape_large_codepoint.phpt2 Invalid Unicode escape sequence: Large codepoint
8 Parse error: Invalid UTF-8 codepoint escape sequence: Codepoint too large in %s on line %d
H A Dunicode_escape_empty.phpt8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
H A Dunicode_escape_incomplete.phpt8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
H A Dunicode_escape_whitespace.phpt8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
H A Dunicode_escape_sign.phpt8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
H A Dunicode_escape_sign2.phpt8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
/PHP-7.3/ext/intl/tests/
H A Dcpbi_getLastCodePoint_basic.phpt18 //first() and last() don't read codepoint and set the last code point var to -1
19 //The pointer is after the last read codepoint if moving forward and
20 //before the last read codepoint is moving backwards
28 //it's a post-increment operation as to the codepoint, i.e., it gives the codepoint
H A Dbug74230.phpt8 $high = "\xED\xa1\x92"; // codepoint D852
9 $low = "\xED\xBD\xA2"; // codepoint DF62
/PHP-7.3/ext/tokenizer/tests/
H A Dparse_errors.phpt40 Invalid UTF-8 codepoint escape sequence
48 Invalid UTF-8 codepoint escape sequence: Codepoint too large
/PHP-7.3/Zend/tests/
H A Drequire_parse_exception.phpt49 Invalid UTF-8 codepoint escape sequence on line 2
50 Invalid UTF-8 codepoint escape sequence: Codepoint too large on line 2
/PHP-7.3/ext/intl/normalizer/
H A Dnormalizer_normalize.c353 UChar32 codepoint = -1; in PHP_FUNCTION() local
371 U8_NEXT(input, offset, input_length, codepoint); in PHP_FUNCTION()
378 if ((codepoint < UCHAR_MIN_VALUE) || (codepoint > UCHAR_MAX_VALUE)) { in PHP_FUNCTION()
384 decomposition_length = unorm2_getRawDecomposition(norm, codepoint, decomposition, 32, &status); in PHP_FUNCTION()
/PHP-7.3/ext/intl/uchar/
H A Duchar.c52 ZEND_ARG_INFO(0, codepoint)
96 ZEND_ARG_INFO(0, codepoint)
115 ZEND_ARG_INFO(0, codepoint)
164 ZEND_ARG_INFO(0, codepoint)
226 ZEND_ARG_INFO(0, codepoint)
243 ZEND_ARG_INFO(0, codepoint)
434 ZEND_ARG_INFO(0, codepoint)
462 ZEND_ARG_INFO(0, codepoint)
504 ZEND_ARG_INFO(0, codepoint)
543 ZEND_ARG_INFO(0, codepoint)
[all …]
/PHP-7.3/Zend/
H A Dzend_language_scanner.l985 unsigned long codepoint; in zend_scan_escape_string() local
1040 if (codepoint < 0x80) { in zend_scan_escape_string()
1041 *t++ = codepoint; in zend_scan_escape_string()
1042 } else if (codepoint <= 0x7FF) { in zend_scan_escape_string()
1043 *t++ = (codepoint >> 6) + 0xC0; in zend_scan_escape_string()
1044 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string()
1045 } else if (codepoint <= 0xFFFF) { in zend_scan_escape_string()
1046 *t++ = (codepoint >> 12) + 0xE0; in zend_scan_escape_string()
1048 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string()
1050 *t++ = (codepoint >> 18) + 0xF0; in zend_scan_escape_string()
[all …]
H A Dzend_language_scanner.c988 unsigned long codepoint; in zend_scan_escape_string() local
1043 if (codepoint < 0x80) { in zend_scan_escape_string()
1044 *t++ = codepoint; in zend_scan_escape_string()
1045 } else if (codepoint <= 0x7FF) { in zend_scan_escape_string()
1046 *t++ = (codepoint >> 6) + 0xC0; in zend_scan_escape_string()
1047 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string()
1048 } else if (codepoint <= 0xFFFF) { in zend_scan_escape_string()
1049 *t++ = (codepoint >> 12) + 0xE0; in zend_scan_escape_string()
1051 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string()
1053 *t++ = (codepoint >> 18) + 0xF0; in zend_scan_escape_string()
[all …]
/PHP-7.3/ext/mbstring/oniguruma/
H A DREADME.md107 * NEW: hexadecimal codepoint \uHHHH
146 * NEW: octal codepoint \o{.....}
H A DHISTORY149 2017/09/03: [new] hexadecimal codepoint \uHHHH
205 2017/05/22: fix #56 : return invalid result for codepoint 0xFFFFFFFF
1356 define virtual codepoint values for invalid encoding
/PHP-7.3/
H A DUPGRADING343 future the needle will be interpreted as a string instead of an ASCII codepoint.
/PHP-7.3/ext/standard/
H A Dbasic_functions.c2313 ZEND_ARG_INFO(0, codepoint)

Completed in 90 milliseconds