Home
last modified time | relevance | path

Searched refs:avail (Results 1 – 4 of 4) sorted by relevance

/PHP-7.1/ext/intl/tests/
H A Duconverter_enum.phpt7 $avail = UConverter::getAvailable();
8 var_dump(count($avail) > 100);
9 var_dump(in_array('UTF-7', $avail));
10 var_dump(in_array('CESU-8', $avail));
11 var_dump(in_array('ISO-8859-1', $avail));
/PHP-7.1/ext/standard/
H A Dhtml.c144 size_t avail = str_len - pos; in get_next_char() local
146 if (avail < 3 || in get_next_char()
148 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
150 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
164 size_t avail = str_len - pos; in get_next_char() local
166 if (avail < 4 || in get_next_char()
169 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
171 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
173 else if (avail < 4 || utf8_lead(str[pos + 3])) in get_next_char()
326 size_t avail = str_len - pos; in get_next_char() local
[all …]
/PHP-7.1/main/streams/
H A Dstreams.c827 size_t avail; in php_stream_locate_eol() local
833 avail = stream->writepos - stream->readpos; in php_stream_locate_eol()
836 avail = ZSTR_LEN(buf); in php_stream_locate_eol()
841 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
842 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
855 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
858 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
870 size_t avail = 0; in _php_stream_get_line() local
896 avail = stream->writepos - stream->readpos; in _php_stream_get_line()
898 if (avail > 0) { in _php_stream_get_line()
[all …]
/PHP-7.1/ext/pcre/pcrelib/doc/
H A Dpcre.txt1916 The output is an integer that is set to one if UTF-8 support is avail-
1924 The output is an integer that is set to one if UTF-16 support is avail-
1932 The output is an integer that is set to one if UTF-32 support is avail-

Completed in 57 milliseconds