Searched refs:codepoint (Results 1 – 14 of 14) sorted by relevance
/PHP-7.4/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.4/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.4/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.4/ext/intl/normalizer/ |
H A D | normalizer_normalize.c | 351 UChar32 codepoint = -1; in PHP_FUNCTION() local 369 U8_NEXT(input, offset, input_length, codepoint); in PHP_FUNCTION() 376 if ((codepoint < UCHAR_MIN_VALUE) || (codepoint > UCHAR_MAX_VALUE)) { in PHP_FUNCTION() 382 decomposition_length = unorm2_getRawDecomposition(norm, codepoint, decomposition, 32, &status); in PHP_FUNCTION()
|
/PHP-7.4/Zend/tests/ |
H A D | require_parse_exception.phpt | 50 Invalid UTF-8 codepoint escape sequence on line 2 51 Invalid UTF-8 codepoint escape sequence: Codepoint too large on line 2
|
/PHP-7.4/ext/intl/uchar/ |
H A D | uchar.c | 50 ZEND_ARG_INFO(0, codepoint) 94 ZEND_ARG_INFO(0, codepoint) 113 ZEND_ARG_INFO(0, codepoint) 162 ZEND_ARG_INFO(0, codepoint) 224 ZEND_ARG_INFO(0, codepoint) 241 ZEND_ARG_INFO(0, codepoint) 432 ZEND_ARG_INFO(0, codepoint) 460 ZEND_ARG_INFO(0, codepoint) 502 ZEND_ARG_INFO(0, codepoint) 541 ZEND_ARG_INFO(0, codepoint) [all …]
|
/PHP-7.4/Zend/ |
H A D | zend_language_scanner.l | 991 unsigned long codepoint; in zend_scan_escape_string() local 1046 if (codepoint < 0x80) { in zend_scan_escape_string() 1047 *t++ = codepoint; in zend_scan_escape_string() 1048 } else if (codepoint <= 0x7FF) { in zend_scan_escape_string() 1049 *t++ = (codepoint >> 6) + 0xC0; in zend_scan_escape_string() 1050 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string() 1051 } else if (codepoint <= 0xFFFF) { in zend_scan_escape_string() 1052 *t++ = (codepoint >> 12) + 0xE0; in zend_scan_escape_string() 1054 *t++ = (codepoint & 0x3F) + 0x80; in zend_scan_escape_string() 1056 *t++ = (codepoint >> 18) + 0xF0; in zend_scan_escape_string() [all …]
|
/PHP-7.4/ext/standard/ |
H A D | basic_functions.c | 2300 ZEND_ARG_INFO(0, codepoint)
|
Completed in 56 milliseconds