/php-src/ext/dom/ |
H A D | html_collection.h | 21 int dom_html_collection_has_dimension(zend_object *object, zval *member, int check_empty);
|
H A D | nodelist.h | 38 int dom_modern_nodelist_has_dimension(zend_object *object, zval *member, int check_empty);
|
H A D | token_list.h | 41 int dom_token_list_has_dimension(zend_object *object, zval *offset, int check_empty);
|
H A D | html_collection.c | 124 int dom_html_collection_has_dimension(zend_object *object, zval *member, int check_empty) in dom_html_collection_has_dimension() argument 127 ZEND_IGNORE_VALUE(check_empty); in dom_html_collection_has_dimension()
|
H A D | nodelist.c | 298 int dom_modern_nodelist_has_dimension(zend_object *object, zval *member, int check_empty) in dom_modern_nodelist_has_dimension() argument 301 ZEND_IGNORE_VALUE(check_empty); in dom_modern_nodelist_has_dimension()
|
H A D | php_dom.c | 455 if (check_empty == 2) { in dom_property_exists() 458 if (check_empty == 1) { in dom_property_exists() 460 } else if (check_empty == 0) { in dom_property_exists() 466 retval = zend_std_has_property(object, name, check_empty, cache_slot); in dom_property_exists() 726 static int dom_nodelist_has_dimension(zend_object *object, zval *member, int check_empty); 728 static int dom_nodemap_has_dimension(zend_object *object, zval *member, int check_empty); 2322 static int dom_nodelist_has_dimension(zend_object *object, zval *member, int check_empty) in dom_nodelist_has_dimension() argument 2327 ZEND_IGNORE_VALUE(check_empty); in dom_nodelist_has_dimension() 2420 static int dom_nodemap_has_dimension(zend_object *object, zval *member, int check_empty) in dom_nodemap_has_dimension() argument 2425 ZEND_IGNORE_VALUE(check_empty); in dom_nodemap_has_dimension() [all …]
|
H A D | token_list.c | 331 int dom_token_list_has_dimension(zend_object *object, zval *offset, int check_empty) in dom_token_list_has_dimension() argument 340 if (check_empty) { in dom_token_list_has_dimension()
|
/php-src/ext/standard/ |
H A D | incomplete_class.c | 84 static int incomplete_class_has_property(zend_object *object, zend_string *member, int check_empty,… in incomplete_class_has_property() argument
|
/php-src/ext/zend_test/ |
H A D | object_handlers.c | 268 …mension_handlers_no_ArrayAccess_has_dimension(zend_object *object, zval *offset, int check_empty) { in dimension_handlers_no_ArrayAccess_has_dimension() argument 270 ZVAL_LONG(OBJ_PROP_NUM(object, 6), check_empty); in dimension_handlers_no_ArrayAccess_has_dimension()
|
/php-src/ext/spl/ |
H A D | spl_fixedarray.c | 379 static int spl_fixedarray_object_has_dimension(zend_object *object, zval *offset, int check_empty); 480 …xedarray_object_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, bool check_empty) in spl_fixedarray_object_has_dimension_helper() argument 493 if (check_empty) { in spl_fixedarray_object_has_dimension_helper() 500 static int spl_fixedarray_object_has_dimension(zend_object *object, zval *offset, int check_empty) in spl_fixedarray_object_has_dimension() argument 513 return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty); in spl_fixedarray_object_has_dimension()
|
H A D | spl_array.c | 398 static int spl_array_has_dimension(zend_object *object, zval *offset, int check_empty); 588 …as_dimension_ex(bool check_inherited, zend_object *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension_ex() argument 603 if (!check_empty) { in spl_array_has_dimension_ex() 632 if (check_empty == 2) { in spl_array_has_dimension_ex() 636 if (check_empty && check_inherited && intern->fptr_offset_get) { in spl_array_has_dimension_ex() 648 return check_empty ? zend_is_true(value) : Z_TYPE_P(value) != IS_NULL; in spl_array_has_dimension_ex() 651 static int spl_array_has_dimension(zend_object *object, zval *offset, int check_empty) /* {{{ */ in spl_array_has_dimension() argument 653 return spl_array_has_dimension_ex(/* check_inherited */ true, object, offset, check_empty); in spl_array_has_dimension()
|
H A D | spl_observer.c | 441 static int spl_object_storage_has_dimension(zend_object *object, zval *offset, int check_empty) in spl_object_storage_has_dimension() argument 446 return zend_std_has_dimension(object, offset, check_empty); in spl_object_storage_has_dimension() 453 if (check_empty) { in spl_object_storage_has_dimension()
|
/php-src/Zend/ |
H A D | zend_object_handlers.h | 117 typedef int (*zend_object_has_dimension_t)(zend_object *object, zval *member, int check_empty); 267 ZEND_API int zend_std_has_dimension(zend_object *object, zval *offset, int check_empty);
|
H A D | zend_weakrefs.c | 417 static int zend_weakmap_has_dimension(zend_object *object, zval *offset, int check_empty) in zend_weakmap_has_dimension() argument 431 if (check_empty) { in zend_weakmap_has_dimension()
|
H A D | zend_object_handlers.c | 1285 ZEND_API int zend_std_has_dimension(zend_object *object, zval *offset, int check_empty) /* {{{ */ in zend_std_has_dimension() argument 1298 if (check_empty && result && EXPECTED(!EG(exception))) { in zend_std_has_dimension()
|
/php-src/ext/com_dotnet/ |
H A D | com_saproxy.c | 291 static int saproxy_property_exists(zend_object *object, zend_string *member, int check_empty, void … in saproxy_property_exists() argument 297 static int saproxy_dimension_exists(zend_object *object, zval *member, int check_empty) in saproxy_dimension_exists() argument
|
H A D | com_handlers.c | 185 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-src/ext/pdo/ |
H A D | pdo_stmt.c | 2360 static int row_prop_exists(zend_object *object, zend_string *name, int check_empty, void **cache_sl… in row_prop_exists() argument 2379 bool res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_prop_exists() 2387 static int row_dim_exists(zend_object *object, zval *offset, int check_empty) in row_dim_exists() argument 2395 if (!check_empty) { in row_dim_exists() 2405 bool res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_dim_exists() 2413 int result = row_prop_exists(object, member, check_empty, NULL); in row_dim_exists()
|
/php-src/ext/simplexml/ |
H A D | simplexml.c | 659 static int sxe_prop_dim_exists(zend_object *object, zval *member, int check_empty, bool elements, b… in sxe_prop_dim_exists() argument 728 if (exists && check_empty == 1 && in sxe_prop_dim_exists() 746 if (check_empty == 1 && in sxe_prop_dim_exists() 764 static int sxe_property_exists(zend_object *object, zend_string *name, int check_empty, void **cach… in sxe_property_exists() argument 768 return sxe_prop_dim_exists(object, &member, check_empty, 1, 0); in sxe_property_exists() 773 static int sxe_dimension_exists(zend_object *object, zval *member, int check_empty) in sxe_dimension_exists() argument 775 return sxe_prop_dim_exists(object, member, check_empty, 0, 1); in sxe_dimension_exists()
|
/php-src/ext/bcmath/ |
H A D | bcmath.c | 974 static int bcmath_number_has_property(zend_object *obj, zend_string *name, int check_empty, void **… in bcmath_number_has_property() argument 976 if (check_empty == ZEND_PROPERTY_NOT_EMPTY) { in bcmath_number_has_property()
|
/php-src/ext/ffi/ |
H A D | ffi.c | 5133 static ZEND_COLD int zend_fake_has_dimension(zend_object *obj, zval *offset, int check_empty) /* {{… in zend_fake_has_dimension() argument 5244 static ZEND_COLD int zend_ffi_free_has_dimension(zend_object *obj, zval *offset, int check_empty) /… in zend_ffi_free_has_dimension() argument
|