Home
last modified time | relevance | path

Searched refs:fields (Results 1 – 25 of 137) sorted by path

123456

/PHP-7.4/Zend/
H A DREADME.md34 `op_type` fields and using different execution methods (call threading, switch
/PHP-7.4/Zend/tests/
H A Dbug33171.phpt2 Bug #33171 (foreach enumerates private fields declared in base classes)
/PHP-7.4/Zend/tests/traits/
H A Dproperty008.phpt2 Handling of private fields with traits needs to have same semantics as with normal inheritance.
H A Dproperty009.phpt2 Handling of public fields with traits needs to have same semantics as with normal inheritance, howe…
/PHP-7.4/docs/
H A Dstreams.md344 /* initialize the connection, and run a query, using the fields in state to
/PHP-7.4/ext/date/lib/
H A Dparse_date.re2269 case TIMELIB_FORMAT_RESET_ALL: /* reset all fields to default */
2273 case TIMELIB_FORMAT_RESET_ALL_WHEN_NOT_SET: /* reset all fields to default when not set */
2361 case TIMELIB_FORMAT_RESET_ALL: /* reset all fields to default */
2365 case TIMELIB_FORMAT_RESET_ALL_WHEN_NOT_SET: /* reset all fields to default when not set */
/PHP-7.4/ext/date/tests/
H A Dbug35887.phpt2 Bug #35887 (wddx_deserialize not parsing dateTime fields properly)
/PHP-7.4/ext/ffi/
H A Dffi.c116 HashTable fields; member
308 ZEND_HASH_FOREACH_PTR(&type->record.fields, field) { in zend_ffi_make_fake_struct_type()
1148 field = zend_hash_find_ptr(&type->record.fields, field_name); in zend_ffi_cdata_read_field()
1226 field = zend_hash_find_ptr(&type->record.fields, field_name); in zend_ffi_cdata_write_field()
1997 ZEND_HASH_FOREACH_STR_KEY_PTR(&type->record.fields, key, f) { in zend_ffi_cdata_get_debug_info()
2204 zend_hash_destroy(&type->record.fields); in _zend_ffi_type_dtor()
2973 … if (zend_hash_num_elements(&old->record.fields) != zend_hash_num_elements(&type->record.fields)) { in zend_ffi_same_types()
2978 Bucket *b = type->record.fields.arData; in zend_ffi_same_types()
3089 ZEND_HASH_FOREACH_PTR(&dcl_type->record.fields, field) { in zend_ffi_subst_old_type()
3593 ZEND_HASH_FOREACH_PTR(&dcl_type->record.fields, field) { in zend_ffi_subst_type()
[all …]
/PHP-7.4/ext/ffi/tests/
H A D031.phpt2 FFI 031: bit-fields packing
H A D032.phpt2 FFI 032: bit-fields access
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic2453 # additional fields for ustar
5016 0 name nintendo-wii-brstm-fields
5039 >>0 use nintendo-wii-brstm-fields
5044 0 name nintendo-3ds-bcstm-fields
5067 >>0 use nintendo-3ds-bcstm-fields
5081 >>0 use nintendo-3ds-bcstm-fields
5086 0 name nintendo-3ds-bcwav-fields
5105 >>0 use nintendo-3ds-bcwav-fields
16293 # Some fields omitted
21670 # Reserved fields, set to zero
[all …]
H A Dmagic私はガラスを食べられます2453 # additional fields for ustar
5016 0 name nintendo-wii-brstm-fields
5039 >>0 use nintendo-wii-brstm-fields
5044 0 name nintendo-3ds-bcstm-fields
5067 >>0 use nintendo-3ds-bcstm-fields
5081 >>0 use nintendo-3ds-bcstm-fields
5086 0 name nintendo-3ds-bcwav-fields
5105 >>0 use nintendo-3ds-bcwav-fields
16293 # Some fields omitted
21670 # Reserved fields, set to zero
[all …]
/PHP-7.4/ext/gd/tests/
H A DRochester-Regular.otf.LICENSE.txt182 boilerplate notice, with the fields enclosed by brackets "[]"
/PHP-7.4/ext/imap/tests/
H A Dimap_fetchstructure_basic.phpt27 $fields = array('type','encoding','ifsubtype','subtype',
30 foreach ($fields as $key) {
H A Dimap_headerinfo_basic.phpt17 $fields = array ('toaddress','to','fromaddress','from',
24 echo "Check general fields\n";
25 foreach ($fields as $key) {
93 Check general fields
H A Dimap_include.inc15 // list of fields to expect
30 * Display all fields in an element from an imap_fetch_overview() response
38 function displayOverviewFields($resp, $fields=null) {
42 foreach ($fields ? $fields : $mandatory_overview_fields as $mf)
H A Dimap_rfc822_parse_headers_basic.phpt17 $fields = array ('toaddress','to','fromaddress','from',
24 echo "Check general fields\n";
25 foreach ($fields as $key) {
93 Check general fields
/PHP-7.4/ext/mbstring/ucgendat/
H A Ducgendat.php212 yield $fields;
218 foreach ($lines as $fields) {
219 if (count($fields) != 15) {
225 $name = $fields[1];
247 $bidiClass = $fields[4];
275 if (count($fields) != 4) {
280 $status = $fields[1];
330 if (count($fields) != 5 && count($fields) != 6) {
339 $cond = $fields[4];
355 if (count($fields) != 2) {
[all …]
H A Ductest.php36 yield $fields;
74 assert(count($fields) == 15);
76 $code = intval($fields[0], 16);
99 assert(count($fields) == 4);
101 $code = intval($fields[0], 16);
102 $status = $fields[1];
115 assert(count($fields) >= 5);
117 $code = intval($fields[0], 16);
118 $lower = parseCodes($fields[1]);
119 $title = parseCodes($fields[2]);
[all …]
/PHP-7.4/ext/mysqli/
H A Dmysqli.c1139 MYSQL_FIELD *fields; in php_mysqli_fetch_into_hash_aux() local
1147 fields = mysql_fetch_fields(result); in php_mysqli_fetch_into_hash_aux()
1192 add_assoc_zval(return_value, fields[i].name, &res); in php_mysqli_fetch_into_hash_aux()
1199 add_assoc_null(return_value, fields[i].name); in php_mysqli_fetch_into_hash_aux()
H A Dmysqli_api.c413 col_type = (stmt->stmt->fields) ? stmt->stmt->fields[ofs].type : MYSQL_TYPE_STRING; in mysqli_stmt_bind_result_do_bind()
508 if (stmt->stmt->fields[ofs].max_length == 0 && in mysqli_stmt_bind_result_do_bind()
518 …(stmt->stmt->fields) ? (stmt->stmt->fields[ofs].length) ? stmt->stmt->fields[ofs].length + 1: 256:… in mysqli_stmt_bind_result_do_bind()
983 if ((stmt->stmt->fields[i].type == MYSQL_TYPE_LONG)
984 && (stmt->stmt->fields[i].flags & UNSIGNED_FLAG))
1006 if (stmt->stmt->fields[i].flags & UNSIGNED_FLAG) {
1021 stmt->stmt->fields[i].decimals);
2541 if (stmt->stmt->fields && (stmt->stmt->fields[i].type == MYSQL_TYPE_BLOB ||
2542 stmt->stmt->fields[i].type == MYSQL_TYPE_MEDIUM_BLOB ||
2543 stmt->stmt->fields[i].type == MYSQL_TYPE_LONG_BLOB ||
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dbug32405.phpt17 /* two fields are needed. the problem does not occur with 1 field only selected. */
H A Dbug75018.phpt2 Bug #75018 Data corruption when reading fields of bit type
H A Dmysqli_explain_metadata.phpt44 $fields = mysqli_fetch_fields($res);
45 if (($tmp = count($fields)) !== $num_fields) {
50 foreach ($fields as $k => $field) {
96 if ($fields_res_meta != $fields) {
99 var_dump($fields);
131 reset($fields);
133 $fields_val = current($fields);
134 next($fields);
144 if ($fields_stmt != $fields) {
147 var_dump($fields);
H A Dmysqli_fetch_all.phpt136 $fields = mysqli_fetch_fields($res);
138 if (!(gettype($php_value)=="unicode" && ($fields[1]->flags & 128))) {

Completed in 334 milliseconds

123456