Home
last modified time | relevance | path

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

/PHP-7.4/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.4/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.4/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.4/ext/intl/normalizer/
H A Dnormalizer_normalize.c351 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 Drequire_parse_exception.phpt50 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 Duchar.c50 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 Dzend_language_scanner.l991 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 Dbasic_functions.c2300 ZEND_ARG_INFO(0, codepoint)

Completed in 31 milliseconds