Home
last modified time | relevance | path

Searched refs:container (Results 76 – 99 of 99) sorted by relevance

1234

/PHP-8.3/ext/dom/tests/delayed_freeing/
H A Dnotation_declaration.phpt13 <container/>
H A Ddocument_fragment.phpt18 $doc->appendChild($doc->createElement('container'));
H A Dentity_declaration.phpt14 <container/>
/PHP-8.3/ext/sqlite3/tests/
H A Dbug66550.phpt15 // Access the sqlite3_stmt object via the php_sqlite3_stmt container
/PHP-8.3/ext/dom/tests/
H A DDOMDocument_getElementsByTagName_liveness_tree_walk.phpt9 $doc->loadXML('<root><container><a><b i="1"/><b i="2"/></a><b i="3"/></container><b i="4"/></root>'…
H A DDOMNode_contains.phpt19 <div><p>container</p></div>
H A DDOMNode_isEqualNode.phpt48 $container = $xpath->query($query)[0];
49 $childNodes = iterator_to_array($container->childNodes);
/PHP-8.3/ext/oci8/tests/
H A Ddrcp_cclass1.phpt16 // This test in Oracle 12c needs a non-CDB or the root container
21 die('skip could not identify container type');
H A Ddrcp_privileged.phpt23 // This test in Oracle 12c needs a non-CDB or the root container
28 die('skip could not identify container type');
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_helpers.c1165 zend_object *obj = Z_OBJ_P(container); in zend_jit_fetch_dim_obj_r_helper()
1192 zend_object *obj = Z_OBJ_P(container); in zend_jit_fetch_dim_obj_is_helper()
1567 if (EXPECTED(Z_TYPE_P(container) == IS_OBJECT)) { in zend_jit_assign_dim_op_helper()
1568 zend_object *obj = Z_OBJ_P(container); in zend_jit_assign_dim_op_helper()
1609 } else if (Z_TYPE_P(container) == IS_FALSE) { in zend_jit_assign_dim_op_helper()
1611 ZVAL_ARR(container, arr); in zend_jit_assign_dim_op_helper()
1618 SEPARATE_ARRAY(container); in zend_jit_assign_dim_op_helper()
1619 arr = Z_ARRVAL_P(container); in zend_jit_assign_dim_op_helper()
1734 return Z_OBJ_HT_P(container)->has_dimension(Z_OBJ_P(container), offset, 0); in zend_jit_isset_dim_helper()
1742 lval += (zend_long)Z_STRLEN_P(container); in zend_jit_isset_dim_helper()
[all …]
H A Dzend_jit_arm64.dasc6078 | // ZVAL_ARR(container, zend_new_array(8));
6098 | // var_ptr = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval));
6159 | // ZVAL_ARR(container, zend_new_array(8));
6291 | // ZVAL_ARR(container, zend_new_array(8));
6314 | // var_ptr = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval));
11494 | // ZVAL_ARR(container, zend_new_array(8));
11514 | // var_ptr = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval));
H A Dzend_jit_x86.dasc6629 | // ZVAL_ARR(container, zend_new_array(8));
6648 | // var_ptr = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval));
6709 | // ZVAL_ARR(container, zend_new_array(8));
6857 | // ZVAL_ARR(container, zend_new_array(8));
6879 | // var_ptr = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval));
12242 | // ZVAL_ARR(container, zend_new_array(8));
12261 | // var_ptr = zend_hash_next_index_insert(Z_ARRVAL_P(container), &EG(uninitialized_zval));
/PHP-8.3/Zend/tests/
H A Dbug41209.phpt21 private $container = array();
/PHP-8.3/.github/actions/setup-oracle/
H A Daction.yml1 name: Create Oracle container
/PHP-8.3/ext/standard/tests/serialize/
H A Dserialization_arrays_005.phpt62 echo "\n\n--- Nested array references container:\n";
416 --- Nested array references container:
/PHP-8.3/.github/workflows/
H A Dpush.yml90 - name: Create MSSQL container
93 - name: Create Oracle container
140 container:
H A Dnightly.yml86 - name: Create MSSQL container
88 - name: Create Oracle container
163 container:
313 - name: Create MSSQL container
542 - name: Create MSSQL container
544 - name: Create Oracle container
/PHP-8.3/sapi/fpm/
H A Dphp-fpm.service.in41 # made read-only to all processes of the unit. Except for container managers no services should
/PHP-8.3/Zend/
H A Dzend.c1746 ZEND_API ZEND_COLD void zend_illegal_container_offset(const zend_string *container, const zval *off… in zend_illegal_container_offset() argument
1755 if (zend_string_equals(container, ZSTR_KNOWN(ZEND_STR_STRING))) { in zend_illegal_container_offset()
1758 …pe_error("Cannot unset offset of type %s on %s", zend_zval_type_name(offset), ZSTR_VAL(container)); in zend_illegal_container_offset()
1763 zend_zval_type_name(offset), ZSTR_VAL(container)); in zend_illegal_container_offset()
H A Dzend.h362 ZEND_API ZEND_COLD void zend_illegal_container_offset(const zend_string *container, const zval *off…
H A Dzend_execute.h395 ZEND_API void zend_fetch_dimension_const(zval *result, zval *container, zval *dim, int type);
H A Dzend_compile.c10847 zval *container, *dim; in zend_eval_const_expr() local
10869 container = zend_ast_get_zval(ast->child[0]); in zend_eval_const_expr()
10872 if (Z_TYPE_P(container) == IS_ARRAY) { in zend_eval_const_expr()
10875 el = zend_hash_index_find(Z_ARR_P(container), Z_LVAL_P(dim)); in zend_eval_const_expr()
10882 el = zend_symtable_find(Z_ARR_P(container), Z_STR_P(dim)); in zend_eval_const_expr()
10891 } else if (Z_TYPE_P(container) == IS_STRING) { in zend_eval_const_expr()
10899 if (offset < 0 || (size_t)offset >= Z_STRLEN_P(container)) { in zend_eval_const_expr()
10902 c = (uint8_t) Z_STRVAL_P(container)[offset]; in zend_eval_const_expr()
10904 } else if (Z_TYPE_P(container) <= IS_FALSE) { in zend_eval_const_expr()
/PHP-8.3/ext/fileinfo/tests/
H A Dmagic894 >8 string ccff \b, Common container file format
1862 0 string nut/multimedia\ container\0 NUT multimedia container
4689 # SeqBox - Sequenced container
9842 # Type: Nintendo 3DS "NCCH" container.
15545 # Note: container for TrueType, OpenType font
23198 0 string \x00\x00\x00\x0cJXL\x20\x0d\x0a\x87\x0a JPEG XL container
32521 # An indeterminate length is only allowed for container packets
32603 # Partial body encoding (only valid for container packets).
32712 # Partial body encoding (only valid for container packets).
34203 # since 16 "content/root.dat" in ZIP container
[all …]
H A Dmagic私はガラスを食べられます894 >8 string ccff \b, Common container file format
1862 0 string nut/multimedia\ container\0 NUT multimedia container
4689 # SeqBox - Sequenced container
9842 # Type: Nintendo 3DS "NCCH" container.
15545 # Note: container for TrueType, OpenType font
23198 0 string \x00\x00\x00\x0cJXL\x20\x0d\x0a\x87\x0a JPEG XL container
32521 # An indeterminate length is only allowed for container packets
32603 # Partial body encoding (only valid for container packets).
32712 # Partial body encoding (only valid for container packets).
34203 # since 16 "content/root.dat" in ZIP container
[all …]

Completed in 247 milliseconds

1234