Home
last modified time | relevance | path

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

/PHP-7.4/ext/dom/
H A Ddom_properties.h27 int dom_attr_value_write(dom_object *obj, zval *newval);
33 int dom_characterdata_data_write(dom_object *obj, zval *newval);
43 int dom_document_encoding_write(dom_object *obj, zval *newval);
45 int dom_document_standalone_write(dom_object *obj, zval *newval);
47 int dom_document_version_write(dom_object *obj, zval *newval);
62 int dom_document_recover_write(dom_object *obj, zval *newval);
106 int dom_entity_encoding_write(dom_object *obj, zval *newval);
108 int dom_entity_version_write(dom_object *obj, zval *newval);
119 int dom_node_node_value_write(dom_object *obj, zval *newval);
131 int dom_node_prefix_write(dom_object *obj, zval *newval);
[all …]
H A Dentity.c129 int dom_entity_actual_encoding_write(dom_object *obj, zval *newval) in dom_entity_actual_encoding_write() argument
147 int dom_entity_encoding_write(dom_object *obj, zval *newval) in dom_entity_encoding_write() argument
165 int dom_entity_version_write(dom_object *obj, zval *newval) in dom_entity_version_write() argument
H A Dprocessinginstruction.c131 int dom_processinginstruction_data_write(dom_object *obj, zval *newval) in dom_processinginstruction_data_write() argument
141 str = zval_try_get_string(newval); in dom_processinginstruction_data_write()
H A Ddocument.c340 str = zval_try_get_string(newval); in dom_document_encoding_write()
393 standalone = zval_get_long(newval); in dom_document_standalone_write()
437 str = zval_try_get_string(newval); in dom_document_version_write()
475 doc_prop->stricterror = zend_is_true(newval); in dom_document_strict_error_checking_write()
501 doc_prop->formatoutput = zend_is_true(newval); in dom_document_format_output_write()
526 doc_prop->validateonparse = zend_is_true(newval); in dom_document_validate_on_parse_write()
551 doc_prop->resolveexternals = zend_is_true(newval); in dom_document_resolve_externals_write()
576 doc_prop->preservewhitespace = zend_is_true(newval); in dom_document_preserve_whitespace_write()
601 doc_prop->recover = zend_is_true(newval); in dom_document_recover_write()
626 doc_prop->substituteentities = zend_is_true(newval); in dom_document_substitue_entities_write()
[all …]
H A Dattr.c153 int dom_attr_value_write(dom_object *obj, zval *newval) in dom_attr_value_write() argument
163 str = zval_try_get_string(newval); in dom_attr_value_write()
H A Dcharacterdata.c97 int dom_characterdata_data_write(dom_object *obj, zval *newval) in dom_characterdata_data_write() argument
107 str = zval_try_get_string(newval); in dom_characterdata_data_write()
H A Dnode.c323 int dom_node_node_value_write(dom_object *obj, zval *newval) in dom_node_node_value_write() argument
333 str = zval_try_get_string(newval); in dom_node_node_value_write()
698 int dom_node_prefix_write(dom_object *obj, zval *newval) in dom_node_prefix_write() argument
723 str = zval_try_get_string(newval); in dom_node_prefix_write()
850 int dom_node_text_content_write(dom_object *obj, zval *newval) in dom_node_text_content_write() argument
860 str = zval_try_get_string(newval); in dom_node_text_content_write()
H A Dphp_dom.c105 typedef int (*dom_write_t)(dom_object *obj, zval *newval);
292 static int dom_write_na(dom_object *obj, zval *newval) in dom_write_na() argument
/PHP-7.4/tests/classes/
H A Darray_access_003.phpt27 function offsetSet($index, $newval) {
28 echo __METHOD__ . "($index,$newval)\n";
30 $this->cnt = $newval;
32 return $this->a[$index] = $newval;
H A Darray_access_004.phpt25 function offsetSet($index, $newval) {
26 echo __METHOD__ . "($index,$newval)\n";
28 $this->cnt = $newval;
30 return $this->a[$index] = $newval;
H A Darray_access_001.phpt17 function offsetSet($index, $newval) {
18 echo __METHOD__ . "($index,$newval)\n";
19 return $this->a[$index] = $newval;
H A Darray_access_002.phpt17 function offsetSet($index, $newval) {
18 echo __METHOD__ . "($index,$newval)\n";
19 /*return*/ $this->a[$index] = $newval;
/PHP-7.4/ext/spl/tests/
H A Dbug32134.phpt22 public function offsetSet($index, $newval)
24 echo __METHOD__ . "($index,$newval)\n";
25 return parent::offsetSet($index, $newval);
/PHP-7.4/ext/dom/tests/
H A Dbug37456.phpt14 $attr = $root->setAttribute('bar', 'newval');
20 newval
/PHP-7.4/ext/snmp/
H A Dphp_snmp.h106 typedef int (*php_snmp_write_t)(php_snmp_object *snmp_object, zval *newval);
H A Dsnmp.c2125 static int php_snmp_write_info(php_snmp_object *snmp_object, zval *newval)
2133 static int php_snmp_write_max_oids(php_snmp_object *snmp_object, zval *newval) in php_snmp_write_max_oids() argument
2138 if (Z_TYPE_P(newval) == IS_NULL) { in php_snmp_write_max_oids()
2143 lval = zval_get_long(newval); in php_snmp_write_max_oids()
2159 zend_long lval = zval_get_long(newval); in php_snmp_write_valueretrieval()
2173 static int php_snmp_write_##name(php_snmp_object *snmp_object, zval *newval) \
2176 ZVAL_COPY(&ztmp, newval); \
2178 newval = &ztmp; \
2180 snmp_object->name = Z_TYPE_P(newval) == IS_TRUE? 1 : 0; \
2193 zend_long lval = zval_get_long(newval); in PHP_SNMP_BOOL_PROPERTY_WRITER_FUNCTION()
[all …]
/PHP-7.4/Zend/tests/
H A Dobject_handlers.phpt25 function offsetSet($index, $newval) {
/PHP-7.4/ext/ldap/
H A Dldap.c3201 zval *link, *newval; in PHP_FUNCTION() local
3246 convert_to_long_ex(newval); in PHP_FUNCTION()
3251 val = (int)Z_LVAL_P(newval); in PHP_FUNCTION()
3261 convert_to_long_ex(newval); in PHP_FUNCTION()
3262 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
3273 convert_to_long_ex(newval); in PHP_FUNCTION()
3285 convert_to_long_ex(newval); in PHP_FUNCTION()
3286 timeout.tv_sec = Z_LVAL_P(newval); in PHP_FUNCTION()
3323 val = zval_get_string(newval); in PHP_FUNCTION()
3355 if (Z_TYPE_P(newval) != IS_ARRAY) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/standard/
H A Dstreamsfuncs.c538 MAKE_STD_ZVAL(newval); in PHP_FUNCTION()
539 array_init(newval); in PHP_FUNCTION()
542 add_next_index_string(newval, (char *)filter->fops->label); in PHP_FUNCTION()
545 add_assoc_zval(return_value, "filters", newval); in PHP_FUNCTION()
/PHP-7.4/ext/mysqli/
H A Dmysqli.c73 typedef int (*mysqli_write_t)(mysqli_object *obj, zval *newval);
295 static int mysqli_write_na(mysqli_object *obj, zval *newval) in mysqli_write_na() argument
/PHP-7.4/ext/spl/
H A Dspl_fixedarray.c1029 ZEND_ARG_INFO(0, newval)
H A Dspl_dllist.c1411 ZEND_ARG_INFO(0, newval)
H A Dspl_array.c1943 ZEND_ARG_INFO(0, newval)
H A Dspl_iterators.c2986 ZEND_ARG_INFO(0, newval)
/PHP-7.4/ext/xmlreader/
H A Dphp_xmlreader.c44 typedef int (*xmlreader_write_t)(xmlreader_object *obj, zval *newval);

Completed in 115 milliseconds