Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dincomplete_class.c83 static int incomplete_class_has_property(zval *object, zval *member, int check_empty, void **cache_… in incomplete_class_has_property() argument
/PHP-7.4/Zend/
H A Dzend_object_handlers.h84 typedef int (*zend_object_has_dimension_t)(zval *object, zval *member, int check_empty);
219 ZEND_API int zend_std_has_dimension(zval *object, zval *offset, int check_empty);
H A Dzend_object_handlers.c1010 ZEND_API int zend_std_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in zend_std_has_dimension() argument
1023 if (check_empty && result && EXPECTED(!EG(exception))) { in zend_std_has_dimension()
/PHP-7.4/ext/spl/
H A Dspl_fixedarray.c345 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty);
470 …object_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, int check_empty) /* {{{ */ in spl_fixedarray_object_has_dimension_helper() argument
486 } else if (check_empty) { in spl_fixedarray_object_has_dimension_helper()
501 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ … in spl_fixedarray_object_has_dimension() argument
519 return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty); in spl_fixedarray_object_has_dimension()
H A Dspl_array.c396 static int spl_array_has_dimension(zval *object, zval *offset, int check_empty);
610 …_array_has_dimension_ex(int check_inherited, zval *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension_ex() argument
623 if (check_empty != 1) { in spl_array_has_dimension_ex()
641 if (check_empty == 2) { in spl_array_has_dimension_ex()
665 if (check_empty == 2) { in spl_array_has_dimension_ex()
680 if (check_empty && check_inherited && intern->fptr_offset_get) { in spl_array_has_dimension_ex()
688 zend_bool result = check_empty ? zend_is_true(value) : Z_TYPE_P(value) != IS_NULL; in spl_array_has_dimension_ex()
696 static int spl_array_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension() argument
698 return spl_array_has_dimension_ex(1, object, offset, check_empty); in spl_array_has_dimension()
/PHP-7.4/ext/dom/
H A Dphp_dom.h129 int dom_nodelist_has_dimension(zval *object, zval *member, int check_empty);
H A Dphp_dom.c381 static int dom_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in dom_property_exists() argument
394 if (check_empty == 2) { in dom_property_exists()
397 if (check_empty == 1) { in dom_property_exists()
399 } else if (check_empty == 0) { in dom_property_exists()
405 retval = zend_std_has_property(object, member, check_empty, cache_slot); in dom_property_exists()
1567 int dom_nodelist_has_dimension(zval *object, zval *member, int check_empty) in dom_nodelist_has_dimension() argument
/PHP-7.4/ext/com_dotnet/
H A Dcom_saproxy.c298 static int saproxy_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in saproxy_property_exists() argument
304 static int saproxy_dimension_exists(zval *object, zval *member, int check_empty) in saproxy_dimension_exists() argument
H A Dcom_handlers.c205 static int com_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in com_property_exists() argument
227 static int com_dimension_exists(zval *object, zval *member, int check_empty) in com_dimension_exists() argument
/PHP-7.4/ext/simplexml/
H A Dsimplexml.c714 static int sxe_prop_dim_exists(zval *object, zval *member, int check_empty, zend_bool elements, zen… in sxe_prop_dim_exists() argument
783 if (exists && check_empty == 1 && in sxe_prop_dim_exists()
801 if (check_empty == 1 && in sxe_prop_dim_exists()
820 static int sxe_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in sxe_property_exists() argument
822 return sxe_prop_dim_exists(object, member, check_empty, 1, 0); in sxe_property_exists()
828 static int sxe_dimension_exists(zval *object, zval *member, int check_empty) in sxe_dimension_exists() argument
830 return sxe_prop_dim_exists(object, member, check_empty, 0, 1); in sxe_dimension_exists()
/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c2504 static int row_prop_exists(zval *object, zval *member, int check_empty, void **cache_slot) in row_prop_exists() argument
2533 res = check_empty ? i_zend_is_true(&val) : Z_TYPE(val) != IS_NULL; in row_prop_exists()
2544 static int row_dim_exists(zval *object, zval *member, int check_empty) in row_dim_exists() argument
2546 return row_prop_exists(object, member, check_empty, NULL); in row_dim_exists()
/PHP-7.4/ext/ffi/
H A Dffi.c4705 static ZEND_COLD int zend_fake_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in zend_fake_has_dimension() argument
4811 static ZEND_COLD int zend_ffi_free_has_dimension(zval *object, zval *offset, int check_empty) /* {{… in zend_ffi_free_has_dimension() argument

Completed in 115 milliseconds