Home
last modified time | relevance | path

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

/PHP-7.1/ext/standard/
H A Dincomplete_class.c84 static int incomplete_class_has_property(zval *object, zval *member, int check_empty, void **cache_… in incomplete_class_has_property() argument
/PHP-7.1/ext/dom/
H A Dphp_dom.h130 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()
406 retval = std_hnd->has_property(object, member, check_empty, cache_slot); in dom_property_exists()
1552 int dom_nodelist_has_dimension(zval *object, zval *member, int check_empty) in dom_nodelist_has_dimension() argument
/PHP-7.1/ext/spl/
H A Dspl_array.c397 static int spl_array_has_dimension(zval *object, zval *offset, int check_empty);
614 …_array_has_dimension_ex(int check_inherited, zval *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension_ex() argument
627 if (check_empty != 1) { in spl_array_has_dimension_ex()
645 if (check_empty == 2) { in spl_array_has_dimension_ex()
669 if (check_empty == 2) { in spl_array_has_dimension_ex()
684 if (check_empty && check_inherited && intern->fptr_offset_get) { in spl_array_has_dimension_ex()
692 zend_bool result = check_empty ? zend_is_true(value) : Z_TYPE_P(value) != IS_NULL; in spl_array_has_dimension_ex()
700 static int spl_array_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension() argument
702 return spl_array_has_dimension_ex(1, object, offset, check_empty); in spl_array_has_dimension()
H A Dspl_fixedarray.c476 …object_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, int check_empty) /* {{{ */ in spl_fixedarray_object_has_dimension_helper() argument
492 } else if (check_empty) { in spl_fixedarray_object_has_dimension_helper()
507 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ … in spl_fixedarray_object_has_dimension() argument
526 return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty); in spl_fixedarray_object_has_dimension()
/PHP-7.1/Zend/
H A Dzend_object_handlers.h77 typedef int (*zend_object_has_dimension_t)(zval *object, zval *member, int check_empty);
H A Dzend_object_handlers.c860 static int zend_std_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in zend_std_has_dimension() argument
874 if (check_empty && result && EXPECTED(!EG(exception))) { in zend_std_has_dimension()
/PHP-7.1/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.c191 static int com_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in com_property_exists() argument
211 static int com_dimension_exists(zval *object, zval *member, int check_empty) in com_dimension_exists() argument
/PHP-7.1/ext/simplexml/
H A Dsimplexml.c731 static int sxe_prop_dim_exists(zval *object, zval *member, int check_empty, zend_bool elements, zen… in sxe_prop_dim_exists() argument
796 if (exists && check_empty == 1 && in sxe_prop_dim_exists()
814 if (check_empty == 1 && in sxe_prop_dim_exists()
833 static int sxe_property_exists(zval *object, zval *member, int check_empty, void **cache_slot) in sxe_property_exists() argument
835 return sxe_prop_dim_exists(object, member, check_empty, 1, 0); in sxe_property_exists()
841 static int sxe_dimension_exists(zval *object, zval *member, int check_empty) in sxe_dimension_exists() argument
843 return sxe_prop_dim_exists(object, member, check_empty, 0, 1); in sxe_dimension_exists()
/PHP-7.1/ext/pdo/
H A Dpdo_stmt.c2543 static int row_prop_exists(zval *object, zval *member, int check_empty, void **cache_slot) in row_prop_exists() argument
2570 res = check_empty ? i_zend_is_true(&val) : Z_TYPE(val) != IS_NULL; in row_prop_exists()
2581 static int row_dim_exists(zval *object, zval *member, int check_empty) in row_dim_exists() argument
2583 return row_prop_exists(object, member, check_empty, NULL); in row_dim_exists()

Completed in 66 milliseconds