Home
last modified time | relevance | path

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

/PHP-7.0/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.0/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.0/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.0/ext/intl/uchar/
H A Duchar.c40 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 Dparse_errors.phpt40 Invalid UTF-8 codepoint escape sequence
48 Invalid UTF-8 codepoint escape sequence: Codepoint too large
/PHP-7.0/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.0/Zend/
H A Dzend_language_scanner.l979 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 Dzend_language_scanner.c981 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 Dtestoutput101989 *These match just the first codepoint (invalid sequence)
1991 0+ These match just the first codepoint (invalid sequence)
H A Dtestinput101059 *These match just the first codepoint (invalid sequence)
H A Dtestoutput61433 *These match just the first codepoint (invalid sequence)
1435 0+ These match just the first codepoint (invalid sequence)
H A Dtestinput6840 *These match just the first codepoint (invalid sequence)
/PHP-7.0/
H A DUPGRADING306 $str = "\u{xyz}"; // Fatal error: Invalid UTF-8 codepoint escape sequence
/PHP-7.0/ext/standard/
H A Dbasic_functions.c2299 ZEND_ARG_INFO(0, codepoint)
/PHP-7.0/ext/mbstring/oniguruma/
H A DHISTORY1073 define virtual codepoint values for invalid encoding
/PHP-7.0/ext/pcre/pcrelib/doc/
H A Dpcre.txt5126 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 DChangeLog1042 caselessly. Previously, the high codepoint matched the low one, but not

Completed in 174 milliseconds