Home
last modified time | relevance | path

Searched refs:newval (Results 1 – 23 of 23) sorted by relevance

/PHP-8.3/ext/dom/
H A Ddom_properties.h25 int dom_attr_value_write(dom_object *obj, zval *newval);
31 int dom_characterdata_data_write(dom_object *obj, zval *newval);
41 int dom_document_encoding_write(dom_object *obj, zval *newval);
43 int dom_document_standalone_write(dom_object *obj, zval *newval);
45 int dom_document_version_write(dom_object *obj, zval *newval);
60 int dom_document_recover_write(dom_object *obj, zval *newval);
75 int dom_element_class_name_write(dom_object *obj, zval *newval);
77 int dom_element_id_write(dom_object *obj, zval *newval);
104 int dom_node_node_value_write(dom_object *obj, zval *newval);
120 int dom_node_prefix_write(dom_object *obj, zval *newval);
[all …]
H A Dprocessinginstruction.c108 int dom_processinginstruction_data_write(dom_object *obj, zval *newval) in dom_processinginstruction_data_write() argument
118 ZEND_ASSERT(Z_TYPE_P(newval) == IS_STRING); in dom_processinginstruction_data_write()
119 zend_string *str = Z_STR_P(newval); in dom_processinginstruction_data_write()
H A Dattr.c136 int dom_attr_value_write(dom_object *obj, zval *newval) in dom_attr_value_write() argument
146 ZEND_ASSERT(Z_TYPE_P(newval) == IS_STRING); in dom_attr_value_write()
147 zend_string *str = Z_STR_P(newval); in dom_attr_value_write()
H A Ddocument.c151 ZEND_ASSERT(Z_TYPE_P(newval) == IS_STRING || Z_TYPE_P(newval) == IS_NULL); in dom_document_encoding_write()
153 if (Z_TYPE_P(newval) == IS_NULL) { in dom_document_encoding_write()
157 zend_string *str = Z_STR_P(newval); in dom_document_encoding_write()
210 standalone = zval_get_long(newval); in dom_document_standalone_write()
254 str = zval_try_get_string(newval); in dom_document_version_write()
287 doc_prop->stricterror = zend_is_true(newval); in dom_document_strict_error_checking_write()
309 doc_prop->formatoutput = zend_is_true(newval); in dom_document_format_output_write()
330 doc_prop->validateonparse = zend_is_true(newval); in dom_document_validate_on_parse_write()
351 doc_prop->resolveexternals = zend_is_true(newval); in dom_document_resolve_externals_write()
393 doc_prop->recover = zend_is_true(newval); in dom_document_recover_write()
[all …]
H A Dcharacterdata.c52 int dom_characterdata_data_write(dom_object *obj, zval *newval) in dom_characterdata_data_write() argument
62 ZEND_ASSERT(Z_TYPE_P(newval) == IS_STRING); in dom_characterdata_data_write()
63 zend_string *str = Z_STR_P(newval); in dom_characterdata_data_write()
H A Delement.c161 static xmlAttrPtr dom_element_reflected_attribute_write(dom_object *obj, zval *newval, const char *… in dom_element_reflected_attribute_write() argument
171 ZEND_ASSERT(Z_TYPE_P(newval) == IS_STRING); in dom_element_reflected_attribute_write()
172 return xmlSetNsProp(nodep, NULL, (const xmlChar *) name, (const xmlChar *) Z_STRVAL_P(newval)); in dom_element_reflected_attribute_write()
184 int dom_element_class_name_write(dom_object *obj, zval *newval) in dom_element_class_name_write() argument
186 if (dom_element_reflected_attribute_write(obj, newval, "class")) { in dom_element_class_name_write()
204 int dom_element_id_write(dom_object *obj, zval *newval) in dom_element_id_write() argument
206 xmlAttrPtr attr = dom_element_reflected_attribute_write(obj, newval, "id"); in dom_element_id_write()
H A Dnode.c173 int dom_node_node_value_write(dom_object *obj, zval *newval) in dom_node_node_value_write() argument
183 str = zval_try_get_string(newval); in dom_node_node_value_write()
646 int dom_node_prefix_write(dom_object *obj, zval *newval) in dom_node_prefix_write() argument
673 ZEND_ASSERT(Z_TYPE_P(newval) == IS_STRING); in dom_node_prefix_write()
674 prefix_str = Z_STR_P(newval); in dom_node_prefix_write()
788 int dom_node_text_content_write(dom_object *obj, zval *newval) in dom_node_text_content_write() argument
800 ZEND_ASSERT(Z_TYPE_P(newval) == IS_STRING); in dom_node_text_content_write()
801 const xmlChar *xmlChars = (const xmlChar *) Z_STRVAL_P(newval); in dom_node_text_content_write()
H A Dxpath.c284 int dom_xpath_register_node_ns_write(dom_object *obj, zval *newval) in dom_xpath_register_node_ns_write() argument
286 php_xpath_obj_from_dom_obj(obj)->register_node_ns = zend_is_true(newval); in dom_xpath_register_node_ns_write()
H A Dphp_dom.c97 typedef int (*dom_write_t)(dom_object *obj, zval *newval);
/PHP-8.3/tests/classes/
H A Darray_access_003.phpt27 function offsetSet($index, $newval): void {
28 echo __METHOD__ . "($index,$newval)\n";
30 $this->cnt = $newval;
32 $this->a[$index] = $newval;
H A Darray_access_004.phpt25 function offsetSet($index, $newval): void {
26 echo __METHOD__ . "($index,$newval)\n";
28 $this->cnt = $newval;
30 $this->a[$index] = $newval;
H A Darray_access_001.phpt17 function offsetSet($index, $newval): void {
18 echo __METHOD__ . "($index,$newval)\n";
19 $this->a[$index] = $newval;
H A Darray_access_002.phpt17 function offsetSet($index, $newval): void {
18 echo __METHOD__ . "($index,$newval)\n";
19 $this->a[$index] = $newval;
/PHP-8.3/ext/spl/tests/
H A Dbug32134.phpt22 public function offsetSet($index, $newval): void
24 echo __METHOD__ . "($index,$newval)\n";
25 parent::offsetSet($index, $newval);
/PHP-8.3/ext/dom/tests/
H A Dbug37456.phpt14 $attr = $root->setAttribute('bar', 'newval');
20 newval
/PHP-8.3/Zend/tests/in-de-crement/
H A Doverloaded_access.phpt13 function offsetSet($index, $newval): void {
/PHP-8.3/ext/snmp/
H A Dphp_snmp.h68 typedef int (*php_snmp_write_t)(php_snmp_object *snmp_object, zval *newval);
H A Dsnmp.c1882 static int php_snmp_write_max_oids(php_snmp_object *snmp_object, zval *newval)
1886 if (Z_TYPE_P(newval) == IS_NULL) {
1891 lval = zval_get_long(newval);
1904 static int php_snmp_write_valueretrieval(php_snmp_object *snmp_object, zval *newval) in php_snmp_write_valueretrieval() argument
1906 zend_long lval = zval_get_long(newval); in php_snmp_write_valueretrieval()
1920 static int php_snmp_write_##name(php_snmp_object *snmp_object, zval *newval) \
1923 ZVAL_COPY(&ztmp, newval); \
1925 newval = &ztmp; \
1927 snmp_object->name = Z_TYPE_P(newval) == IS_TRUE? 1 : 0; \
1939 zend_long lval = zval_get_long(newval); in PHP_SNMP_BOOL_PROPERTY_WRITER_FUNCTION()
[all …]
/PHP-8.3/ext/ldap/
H A Dldap.c3123 zval *link = NULL, *newval; in PHP_FUNCTION() local
3167 convert_to_long(newval); in PHP_FUNCTION()
3168 if (ZEND_LONG_EXCEEDS_INT(Z_LVAL_P(newval))) { in PHP_FUNCTION()
3172 val = (int)Z_LVAL_P(newval); in PHP_FUNCTION()
3182 convert_to_long(newval); in PHP_FUNCTION()
3183 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
3194 convert_to_long(newval); in PHP_FUNCTION()
3206 convert_to_long(newval); in PHP_FUNCTION()
3207 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
3244 val = zval_get_string(newval); in PHP_FUNCTION()
[all …]
/PHP-8.3/Zend/tests/
H A Dobject_handlers.phpt26 function offsetSet($index, $newval): void {
/PHP-8.3/ext/standard/
H A Dstreamsfuncs.c566 MAKE_STD_ZVAL(newval); in PHP_FUNCTION()
567 array_init(newval); in PHP_FUNCTION()
570 add_next_index_string(newval, (char *)filter->fops->label); in PHP_FUNCTION()
573 add_assoc_zval(return_value, "filters", newval); in PHP_FUNCTION()
/PHP-8.3/ext/mysqli/
H A Dmysqli.c76 typedef int (*mysqli_write_t)(mysqli_object *obj, zval *newval);
/PHP-8.3/ext/xmlreader/
H A Dphp_xmlreader.c47 typedef int (*xmlreader_write_t)(xmlreader_object *obj, zval *newval);

Completed in 120 milliseconds