Home
last modified time | relevance | path

Searched refs:check_empty (Results 1 – 11 of 11) sorted by relevance

/PHP-7.3/ext/standard/
H A Dincomplete_class.c82 static int incomplete_class_has_property(zval *object, zval *member, int check_empty, void **cache_… in incomplete_class_has_property() argument
/PHP-7.3/Zend/
H A Dzend_object_handlers.h83 typedef int (*zend_object_has_dimension_t)(zval *object, zval *member, int check_empty);
195 ZEND_API int zend_std_has_dimension(zval *object, zval *offset, int check_empty);
H A Dzend_object_handlers.c897 ZEND_API int zend_std_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in zend_std_has_dimension() argument
909 if (check_empty && result && EXPECTED(!EG(exception))) { in zend_std_has_dimension()
/PHP-7.3/ext/spl/
H A Dspl_fixedarray.c339 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty);
462 …object_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, int check_empty) /* {{{ */ in spl_fixedarray_object_has_dimension_helper() argument
478 } else if (check_empty) { in spl_fixedarray_object_has_dimension_helper()
493 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ … in spl_fixedarray_object_has_dimension() argument
511 return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty); in spl_fixedarray_object_has_dimension()
H A Dspl_array.c395 static int spl_array_has_dimension(zval *object, zval *offset, int check_empty);
609 …_array_has_dimension_ex(int check_inherited, zval *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension_ex() argument
622 if (check_empty != 1) { in spl_array_has_dimension_ex()
640 if (check_empty == 2) { in spl_array_has_dimension_ex()
664 if (check_empty == 2) { in spl_array_has_dimension_ex()
679 if (check_empty && check_inherited && intern->fptr_offset_get) { in spl_array_has_dimension_ex()
687 zend_bool result = check_empty ? zend_is_true(value) : Z_TYPE_P(value) != IS_NULL; in spl_array_has_dimension_ex()
695 static int spl_array_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension() argument
697 return spl_array_has_dimension_ex(1, object, offset, check_empty); in spl_array_has_dimension()
/PHP-7.3/ext/dom/
H A Dphp_dom.h129 int dom_nodelist_has_dimension(zval *object, zval *member, int check_empty);
H A Dphp_dom.c379 static int dom_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in dom_property_exists() argument
392 if (check_empty == 2) { in dom_property_exists()
395 if (check_empty == 1) { in dom_property_exists()
397 } else if (check_empty == 0) { in dom_property_exists()
403 retval = zend_std_has_property(object, member, check_empty, cache_slot); in dom_property_exists()
1561 int dom_nodelist_has_dimension(zval *object, zval *member, int check_empty) in dom_nodelist_has_dimension() argument
/PHP-7.3/ext/com_dotnet/
H A Dcom_saproxy.c291 static int saproxy_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in saproxy_property_exists() argument
297 static int saproxy_dimension_exists(zval *object, zval *member, int check_empty) in saproxy_dimension_exists() argument
H A Dcom_handlers.c194 static int com_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in com_property_exists() argument
214 static int com_dimension_exists(zval *object, zval *member, int check_empty) in com_dimension_exists() argument
/PHP-7.3/ext/simplexml/
H A Dsimplexml.c705 static int sxe_prop_dim_exists(zval *object, zval *member, int check_empty, zend_bool elements, zen… in sxe_prop_dim_exists() argument
770 if (exists && check_empty == 1 && in sxe_prop_dim_exists()
788 if (check_empty == 1 && in sxe_prop_dim_exists()
807 static int sxe_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in sxe_property_exists() argument
809 return sxe_prop_dim_exists(object, member, check_empty, 1, 0); in sxe_property_exists()
815 static int sxe_dimension_exists(zval *object, zval *member, int check_empty) in sxe_dimension_exists() argument
817 return sxe_prop_dim_exists(object, member, check_empty, 0, 1); in sxe_dimension_exists()
/PHP-7.3/ext/pdo/
H A Dpdo_stmt.c2548 static int row_prop_exists(zval *object, zval *member, int check_empty, void **cache_slot) in row_prop_exists() argument
2575 res = check_empty ? i_zend_is_true(&val) : Z_TYPE(val) != IS_NULL; in row_prop_exists()
2586 static int row_dim_exists(zval *object, zval *member, int check_empty) in row_dim_exists() argument
2588 return row_prop_exists(object, member, check_empty, NULL); in row_dim_exists()

Completed in 64 milliseconds