Home
last modified time | relevance | path

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

/PHP-5.6/ext/zip/lib/
H A Dzip_utf-8.c183 _zip_unicode_to_utf8_len(zip_uint32_t codepoint) in _zip_unicode_to_utf8_len() argument
185 if (codepoint < 0x0080) in _zip_unicode_to_utf8_len()
187 if (codepoint < 0x0800) in _zip_unicode_to_utf8_len()
189 if (codepoint < 0x10000) in _zip_unicode_to_utf8_len()
199 if (codepoint < 0x0080) { in _zip_unicode_to_utf8()
200 buf[0] = codepoint & 0xff; in _zip_unicode_to_utf8()
203 if (codepoint < 0x0800) { in _zip_unicode_to_utf8()
205 buf[1] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f); in _zip_unicode_to_utf8()
208 if (codepoint < 0x10000) { in _zip_unicode_to_utf8()
211 buf[2] = UTF_8_CONTINUE_MATCH | (codepoint & 0x3f); in _zip_unicode_to_utf8()
[all …]
/PHP-5.6/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
/PHP-5.6/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-5.6/ext/standard/
H A Dbasic_functions.c2291 ZEND_ARG_INFO(0, codepoint)
/PHP-5.6/ext/mbstring/oniguruma/
H A DHISTORY1068 define virtual codepoint values for invalid encoding
/PHP-5.6/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-5.6/ext/pcre/pcrelib/
H A DChangeLog1042 caselessly. Previously, the high codepoint matched the low one, but not

Completed in 85 milliseconds