Home
last modified time | relevance | path

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

/PHP-8.3/ext/standard/
H A Dincomplete_class.c84 static int incomplete_class_has_property(zend_object *object, zend_string *member, int check_empty,… in incomplete_class_has_property() argument
/PHP-8.3/Zend/
H A Dzend_object_handlers.h75 typedef int (*zend_object_has_dimension_t)(zend_object *object, zval *member, int check_empty);
222 ZEND_API int zend_std_has_dimension(zend_object *object, zval *offset, int check_empty);
H A Dzend_weakrefs.c390 static int zend_weakmap_has_dimension(zend_object *object, zval *offset, int check_empty) in zend_weakmap_has_dimension() argument
404 if (check_empty) { in zend_weakmap_has_dimension()
H A Dzend_object_handlers.c1066 ZEND_API int zend_std_has_dimension(zend_object *object, zval *offset, int check_empty) /* {{{ */ in zend_std_has_dimension() argument
1079 if (check_empty && result && EXPECTED(!EG(exception))) { in zend_std_has_dimension()
/PHP-8.3/ext/spl/
H A Dspl_fixedarray.c388 static int spl_fixedarray_object_has_dimension(zend_object *object, zval *offset, int check_empty);
489 …xedarray_object_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, bool check_empty) in spl_fixedarray_object_has_dimension_helper() argument
502 if (check_empty) { in spl_fixedarray_object_has_dimension_helper()
509 static int spl_fixedarray_object_has_dimension(zend_object *object, zval *offset, int check_empty) in spl_fixedarray_object_has_dimension() argument
522 return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty); in spl_fixedarray_object_has_dimension()
H A Dspl_array.c399 static int spl_array_has_dimension(zend_object *object, zval *offset, int check_empty);
587 …as_dimension_ex(bool check_inherited, zend_object *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension_ex() argument
602 if (!check_empty) { in spl_array_has_dimension_ex()
631 if (check_empty == 2) { in spl_array_has_dimension_ex()
635 if (check_empty && check_inherited && intern->fptr_offset_get) { in spl_array_has_dimension_ex()
647 return check_empty ? zend_is_true(value) : Z_TYPE_P(value) != IS_NULL; in spl_array_has_dimension_ex()
650 static int spl_array_has_dimension(zend_object *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension() argument
652 return spl_array_has_dimension_ex(/* check_inherited */ true, object, offset, check_empty); in spl_array_has_dimension()
H A Dspl_observer.c446 static int spl_object_storage_has_dimension(zend_object *object, zval *offset, int check_empty) in spl_object_storage_has_dimension() argument
451 return zend_std_has_dimension(object, offset, check_empty); in spl_object_storage_has_dimension()
458 if (check_empty) { in spl_object_storage_has_dimension()
/PHP-8.3/ext/dom/
H A Dphp_dom.c371 static int dom_property_exists(zend_object *object, zend_string *name, int check_empty, void **cach… in dom_property_exists() argument
383 if (check_empty == 2) { in dom_property_exists()
386 if (check_empty == 1) { in dom_property_exists()
388 } else if (check_empty == 0) { in dom_property_exists()
394 retval = zend_std_has_property(object, name, check_empty, cache_slot); in dom_property_exists()
590 static int dom_nodelist_has_dimension(zend_object *object, zval *member, int check_empty);
592 static int dom_nodemap_has_dimension(zend_object *object, zval *member, int check_empty);
1746 static int dom_nodelist_has_dimension(zend_object *object, zval *member, int check_empty) in dom_nodelist_has_dimension() argument
1828 static int dom_nodemap_has_dimension(zend_object *object, zval *member, int check_empty) in dom_nodemap_has_dimension() argument
/PHP-8.3/ext/com_dotnet/
H A Dcom_saproxy.c283 static int saproxy_property_exists(zend_object *object, zend_string *member, int check_empty, void … in saproxy_property_exists() argument
289 static int saproxy_dimension_exists(zend_object *object, zval *member, int check_empty) in saproxy_dimension_exists() argument
H A Dcom_handlers.c185 static int com_property_exists(zend_object *object, zend_string *member, int check_empty, void **ca… in com_property_exists() argument
204 static int com_dimension_exists(zend_object *object, zval *member, int check_empty) in com_dimension_exists() argument
/PHP-8.3/ext/pdo/
H A Dpdo_stmt.c2352 static int row_prop_exists(zend_object *object, zend_string *name, int check_empty, void **cache_sl… in row_prop_exists() argument
2371 int res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_prop_exists()
2376 static int row_dim_exists(zend_object *object, zval *offset, int check_empty) in row_dim_exists() argument
2384 if (!check_empty) { in row_dim_exists()
2394 int res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_dim_exists()
2402 int result = row_prop_exists(object, member, check_empty, NULL); in row_dim_exists()
/PHP-8.3/ext/simplexml/
H A Dsimplexml.c656 static int sxe_prop_dim_exists(zend_object *object, zval *member, int check_empty, bool elements, b… in sxe_prop_dim_exists() argument
725 if (exists && check_empty == 1 && in sxe_prop_dim_exists()
743 if (check_empty == 1 && in sxe_prop_dim_exists()
761 static int sxe_property_exists(zend_object *object, zend_string *name, int check_empty, void **cach… in sxe_property_exists() argument
765 return sxe_prop_dim_exists(object, &member, check_empty, 1, 0); in sxe_property_exists()
770 static int sxe_dimension_exists(zend_object *object, zval *member, int check_empty) in sxe_dimension_exists() argument
772 return sxe_prop_dim_exists(object, member, check_empty, 0, 1); in sxe_dimension_exists()
/PHP-8.3/ext/ffi/
H A Dffi.c5090 static ZEND_COLD int zend_fake_has_dimension(zend_object *obj, zval *offset, int check_empty) /* {{… in zend_fake_has_dimension() argument
5201 static ZEND_COLD int zend_ffi_free_has_dimension(zend_object *obj, zval *offset, int check_empty) /… in zend_ffi_free_has_dimension() argument

Completed in 112 milliseconds