Home
last modified time | relevance | path

Searched refs:le (Results 1 – 25 of 46) sorted by relevance

12

/php-src/ext/standard/tests/versioning/
H A Dversion_compare.phpt10 "le", "<=",
112 1.0-dev le 1.0-dev : true
126 1.0-dev le 1.0a1 : true
140 1.0-dev le 1.0b1 : true
154 1.0-dev le 1.0RC1 : true
168 1.0-dev le 1.0rc1 : true
182 1.0-dev le 1.0 : true
196 1.0-dev le 1.0pl1 : true
224 1.0a1 le 1.0a1 : true
238 1.0a1 le 1.0b1 : true
[all …]
/php-src/ext/dom/tests/
H A Dgh12002.phpt22 $dom->encoding = make_nonconst('utf-16le');
36 string(8) "utf-16le"
38 string(8) "utf-16le"
/php-src/ext/mbstring/tests/
H A Dmb_strtolower_variation3.phpt14 $string_mixed = base64_decode('5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCUEhQLiAwMTIzNO+8le+8lu+8l++8…
15 $string_mixed_lower = base64_decode('5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCcGhwLiAwMTIzNO+8le+8lu…
42 string(80) "5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCcGhwLiAwMTIzNO+8le+8lu+8l++8mO+8meOAgg=="
H A Dmb_strtoupper_variation3.phpt14 $string_mixed_upper = base64_decode('5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCUEhQLiAwMTIzNO+8le+8lu…
15 $string_mixed_lower = base64_decode('5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCcGhwLiAwMTIzNO+8le+8lu…
43 string(80) "5pel5pys6Kqe44OG44Kt44K544OI44Gn44GZ44CCUEhQLiAwMTIzNO+8le+8lu+8l++8mO+8meOAgg=="
/php-src/ext/standard/tests/array/sort/
H A Dlocale_sort.phpt23 "PE" => "�le-du-Prince-�douard",
39 string(21) "�le-du-Prince-�douard"
/php-src/ext/fileinfo/tests/
H A Dgh13344.phpt12 application/octet-stream; charset=utf-32le
/php-src/ext/intl/tests/
H A Dresourcebundle.inc7 $endian = 'le';
/php-src/ext/standard/tests/strings/
H A Dvprintf_variation17.phpt15 '%le %4e %-4e',
H A Dstr_split_variation3.phpt125 string(7) "le "
H A Dvprintf_variation18.phpt15 %le %4e %-4e
H A Dchunk_split_variation4.phpt96 le h
H A Dsprintf_variation46.phpt31 "%e", "%le", " %e", "%e ",
H A Dsprintf_variation47.phpt32 "%e", "%le", " %e", "%e ",
H A Dget_html_translation_table_basic7.phpt195 [≤] => &le;
H A Dget_html_translation_table_basic2.phpt324 string(4) "&le;"
833 string(4) "&le;"
1340 string(4) "&le;"
H A Dhtml_entity_decode_html4.phpt236 "&le;",
/php-src/ext/dba/
H A Ddba.c275 zend_resource *le = Z_RES_P(zv); in remove_pconnection_from_list() local
277 if (le->ptr == p) { in remove_pconnection_from_list()
576 zend_resource *le; in php_dba_open() local
579 if ((le = zend_hash_find_ptr(&EG(persistent_list), resource_key)) != NULL) { in php_dba_open()
580 if (le->type != le_pdb) { in php_dba_open()
588 connection->info = (dba_info *)le->ptr; in php_dba_open()
/php-src/ext/mysqlnd/
H A Dmysqlnd_vio.c236 zend_resource *le; in MYSQLND_METHOD() local
238 if ((le = zend_hash_str_find_ptr(&EG(persistent_list), hashed_details, hashed_details_len))) { in MYSQLND_METHOD()
239 ZEND_ASSERT(le->ptr == net_stream); in MYSQLND_METHOD()
249 pefree(le, 1); in MYSQLND_METHOD()
/php-src/ext/standard/tests/file/
H A Dfscanf_variation47.phpt29 $scientific_formats = array( "%e", "%he", "%le", "%Le", " %e", "%e ", "% e", "\t%e", "\n%e", "%4e",…
H A Dfscanf_variation50.phpt26 $scientific_formats = array( "%e", "%he", "%le", "%Le", " %e", "%e ", "% e", "\t%e", "\n%e", "%4e",…
/php-src/ext/pdo/
H A Dpdo_dbh.c385 zend_resource *le; in php_pdo_internal_construct_driver() local
408 if ((le = zend_hash_str_find_ptr(&EG(persistent_list), hashkey, plen)) != NULL) { in php_pdo_internal_construct_driver()
409 if (le->type == php_pdo_list_entry()) { in php_pdo_internal_construct_driver()
410 pdbh = (pdo_dbh_t*)le->ptr; in php_pdo_internal_construct_driver()
416 zend_list_close(le); in php_pdo_internal_construct_driver()
/php-src/main/streams/
H A Dstreams.c113 zend_resource *le; in php_stream_from_persistent_id() local
115 …if ((le = zend_hash_str_find_ptr(&EG(persistent_list), persistent_id, strlen(persistent_id))) != N… in php_stream_from_persistent_id()
116 if (le->type == le_pstream) { in php_stream_from_persistent_id()
123 *stream = (php_stream*)le->ptr; in php_stream_from_persistent_id()
125 if (regentry->ptr == le->ptr) { in php_stream_from_persistent_id()
131 GC_ADDREF(le); in php_stream_from_persistent_id()
360 zend_resource *le = Z_RES_P(zv); in _php_stream_free_persistent() local
361 return le->ptr == pStream; in _php_stream_free_persistent()
/php-src/ext/mysqli/
H A Dmysqli_nonapi.c62 zend_resource *le; local
153 if ((le = zend_hash_find_ptr(&EG(persistent_list), hash_key)) != NULL) {
154 if (le->type == php_le_pmysqli()) {
155 plist = (mysqli_plist_entry *) le->ptr;
/php-src/ext/standard/html_tables/
H A Dents_html401.txt200 le 2264
H A Dents_xhtml.txt232 le 2264

Completed in 117 milliseconds

12