Home
last modified time | relevance | path

Searched refs:ent (Results 26 – 39 of 39) sorted by relevance

12

/PHP-8.3/ext/standard/tests/strings/
H A Dhtml_entity_decode_macroman.phpt141 $ent = sprintf("&#x%X;", $u);
142 $res = html_entity_decode($ent, ENT_QUOTES, 'MacRoman');
144 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
146 $ent = sprintf("&#x%X;", $v[0]);
147 $res = html_entity_decode($ent, ENT_QUOTES, 'MacRoman');
150 echo sprintf("%s => %s\n\n", $ent, $res);
H A Dhtml_entity_decode_win1251.phpt141 $ent = sprintf("&#x%X;", $u);
142 $res = html_entity_decode($ent, ENT_QUOTES, 'WINDOWS-1251');
144 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
146 $ent = sprintf("&#x%X;", $v[0]);
147 $res = html_entity_decode($ent, ENT_QUOTES, 'WINDOWS-1251');
150 echo sprintf("%s => %s\n\n", $ent, $res);
H A Dhtml_entity_decode_cp866.phpt137 $ent = sprintf("&#x%X;", $u);
138 $res = html_entity_decode($ent, ENT_QUOTES, 'CP866');
140 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
142 $ent = sprintf("&#x%X;", $v[0]);
143 $res = html_entity_decode($ent, ENT_QUOTES, 'CP866');
146 echo sprintf("%s => %s\n\n", $ent, $res);
H A Dhtml_entity_decode_koi8-r.phpt137 $ent = sprintf("&#x%X;", $u);
138 $res = html_entity_decode($ent, ENT_QUOTES, 'KOI8-R');
140 echo sprintf("%s: %s => %s\n", $v[1], $ent, $d[1]);
142 $ent = sprintf("&#x%X;", $v[0]);
143 $res = html_entity_decode($ent, ENT_QUOTES, 'KOI8-R');
146 echo sprintf("%s => %s\n\n", $ent, $res);
/PHP-8.3/ext/xml/tests/
H A Dxml002.phpt81 ]}{?[<!ENTITY]}{?[ ]}{?[%]}{?[ ]}{?[incent]}{?[ ]}{?[SYSTEM]}{?[ ]}{?["inc.ent"]}{?[>]}{?[
/PHP-8.3/Zend/asm/
H A Djump_mips32_o32_elf_gas.S46 .ent jump_fcontext
H A Djump_mips64_n64_elf_gas.S53 .ent jump_fcontext
/PHP-8.3/ext/phar/phar/
H A Dpharcommand.inc238 foreach($files as $ent) {
240 … if (preg_match(",^php[ \t]+([^ \t].*[\\\\/]PHP[\\\\/]Archive\.php)$,", $ent, $matches)) {
1495 foreach(new RecursiveIteratorIterator($phar) as $ent) {
1497 if ($ent->isCompressed()) {
1499 $csize += $ent->getCompressedSize();
1500 if ($ent->isCompressed(Phar::GZ)) {
1502 } elseif ($ent->isCompressed(Phar::BZ2)) {
1507 $csize += $ent->getSize();
1510 $usize += $ent->getSize();
1512 if ($ent->hasMetadata()) {
/PHP-8.3/ext/standard/
H A Dbasic_functions.c2277 struct protoent *ent; local
2283 ent = getprotobyname(name);
2285 if (ent == NULL) {
2289 RETURN_LONG(ent->p_proto);
2299 struct protoent *ent; local
2305 ent = getprotobynumber((int)proto);
2307 if (ent == NULL) {
2311 RETURN_STRING(ent->p_name);
H A Dhtml_tables.h1115 } ent; member
/PHP-8.3/main/streams/
H A Dplain_wrapper.c1023 php_stream_dirent *ent = (php_stream_dirent*)buf; in php_plain_files_dirstream_read() local
1031 PHP_STRLCPY(ent->d_name, result->d_name, sizeof(ent->d_name), strlen(result->d_name)); in php_plain_files_dirstream_read()
1033 ent->d_type = result->d_type; in php_plain_files_dirstream_read()
1035 ent->d_type = DT_UNKNOWN; in php_plain_files_dirstream_read()
H A Duserspace.c1318 php_stream_dirent *ent = (php_stream_dirent*)buf; in php_userstreamop_readdir() local
1330 PHP_STRLCPY(ent->d_name, Z_STRVAL(retval), sizeof(ent->d_name), Z_STRLEN(retval)); in php_userstreamop_readdir()
1331 ent->d_type = DT_UNKNOWN; in php_userstreamop_readdir()
H A Dstreams.c2171 PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent) argument
2174 …if (sizeof(php_stream_dirent) == php_stream_read(dirstream, (char*)ent, sizeof(php_stream_dirent))…
2175 return ent;
/PHP-8.3/main/
H A Dphp_streams.h382 PHPAPI php_stream_dirent *_php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent);

Completed in 144 milliseconds

12