/PHP-7.0/ext/zip/lib/ |
H A D | zip_utf-8.c | 179 _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.0/tests/lang/string/ |
H A D | unicode_escape_large_codepoint.phpt | 2 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 D | unicode_escape_empty.phpt | 8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
|
H A D | unicode_escape_incomplete.phpt | 8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
|
H A D | unicode_escape_whitespace.phpt | 8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
|
H A D | unicode_escape_sign.phpt | 8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
|
H A D | unicode_escape_sign2.phpt | 8 Parse error: Invalid UTF-8 codepoint escape sequence in %s on line %d
|
/PHP-7.0/ext/intl/tests/ |
H A D | cpbi_getLastCodePoint_basic.phpt | 18 //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 D | bug74230.phpt | 8 $high = "\xED\xa1\x92"; // codepoint D852 9 $low = "\xED\xBD\xA2"; // codepoint DF62
|
/PHP-7.0/ext/intl/uchar/ |
H A D | uchar.c | 40 ZEND_ARG_INFO(0, codepoint) 84 ZEND_ARG_INFO(0, codepoint) 103 ZEND_ARG_INFO(0, codepoint) 152 ZEND_ARG_INFO(0, codepoint) 214 ZEND_ARG_INFO(0, codepoint) 231 ZEND_ARG_INFO(0, codepoint) 422 ZEND_ARG_INFO(0, codepoint) 450 ZEND_ARG_INFO(0, codepoint) 492 ZEND_ARG_INFO(0, codepoint) 531 ZEND_ARG_INFO(0, codepoint) [all …]
|
/PHP-7.0/ext/tokenizer/tests/ |
H A D | parse_errors.phpt | 40 Invalid UTF-8 codepoint escape sequence 48 Invalid UTF-8 codepoint escape sequence: Codepoint too large
|
/PHP-7.0/Zend/tests/ |
H A D | require_parse_exception.phpt | 49 Invalid UTF-8 codepoint escape sequence on line 2 50 Invalid UTF-8 codepoint escape sequence: Codepoint too large on line 2
|
/PHP-7.0/Zend/ |
H A D | zend_language_scanner.l | 979 unsigned long codepoint; in zend_scan_escape_string() local 1035 if (codepoint < 0x80) { in zend_scan_escape_string() 1037 *t++ = codepoint; in zend_scan_escape_string() 1038 } else if (codepoint <= 0x7FF) { in zend_scan_escape_string() 1040 *t++ = (codepoint >> 6) + 0xC0; in zend_scan_escape_string() 1041 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string() 1042 } else if (codepoint <= 0xFFFF) { in zend_scan_escape_string() 1044 *t++ = (codepoint >> 12) + 0xE0; in zend_scan_escape_string() 1046 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string() 1049 *t++ = (codepoint >> 18) + 0xF0; in zend_scan_escape_string() [all …]
|
H A D | zend_language_scanner.c | 981 unsigned long codepoint; in zend_scan_escape_string() local 1037 if (codepoint < 0x80) { in zend_scan_escape_string() 1039 *t++ = codepoint; in zend_scan_escape_string() 1040 } else if (codepoint <= 0x7FF) { in zend_scan_escape_string() 1042 *t++ = (codepoint >> 6) + 0xC0; in zend_scan_escape_string() 1043 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string() 1044 } 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() 1051 *t++ = (codepoint >> 18) + 0xF0; in zend_scan_escape_string() [all …]
|
/PHP-7.0/ext/pcre/pcrelib/testdata/ |
H A D | testoutput10 | 1989 *These match just the first codepoint (invalid sequence) 1991 0+ These match just the first codepoint (invalid sequence)
|
H A D | testinput10 | 1059 *These match just the first codepoint (invalid sequence)
|
H A D | testoutput6 | 1433 *These match just the first codepoint (invalid sequence) 1435 0+ These match just the first codepoint (invalid sequence)
|
H A D | testinput6 | 840 *These match just the first codepoint (invalid sequence)
|
/PHP-7.0/ |
H A D | UPGRADING | 306 $str = "\u{xyz}"; // Fatal error: Invalid UTF-8 codepoint escape sequence
|
/PHP-7.0/ext/standard/ |
H A D | basic_functions.c | 2299 ZEND_ARG_INFO(0, codepoint)
|
/PHP-7.0/ext/mbstring/oniguruma/ |
H A D | HISTORY | 1073 define virtual codepoint values for invalid encoding
|
/PHP-7.0/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 5126 8-bit UTF-8 mode less than 0x10ffff and a valid codepoint 5128 16-bit UTF-16 mode less than 0x10ffff and a valid codepoint 5130 32-bit UTF-32 mode less than 0x10ffff and a valid codepoint
|
/PHP-7.0/ext/pcre/pcrelib/ |
H A D | ChangeLog | 1042 caselessly. Previously, the high codepoint matched the low one, but not
|