Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dincomplete_class.c88 static int incomplete_class_has_property(zval *object, zval *member, int check_empty, const zend_li… in incomplete_class_has_property() argument
/PHP-5.5/Zend/
H A Dzend_object_handlers.h73 typedef int (*zend_object_has_dimension_t)(zval *object, zval *member, int check_empty TSRMLS_DC);
H A Dzend_object_handlers.c686 static int zend_std_has_dimension(zval *object, zval *offset, int check_empty TSRMLS_DC) /* {{{ */ in zend_std_has_dimension()
698 if (check_empty && result && EXPECTED(!EG(exception))) { in zend_std_has_dimension()
/PHP-5.5/ext/spl/
H A Dspl_fixedarray.c497 …_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, int check_empty TSRMLS_DC) /* {… in spl_fixedarray_object_has_dimension_helper()
513 } else if (check_empty) { in spl_fixedarray_object_has_dimension_helper()
528 static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty TSRMLS_D… in spl_fixedarray_object_has_dimension()
548 return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty TSRMLS_CC); in spl_fixedarray_object_has_dimension()
H A Dspl_array.c592 …_has_dimension_ex(int check_inherited, zval *object, zval *offset, int check_empty TSRMLS_DC) /* {… in spl_array_has_dimension_ex()
617 switch (check_empty) { in spl_array_has_dimension_ex()
640 switch (check_empty) { in spl_array_has_dimension_ex()
657 static int spl_array_has_dimension(zval *object, zval *offset, int check_empty TSRMLS_DC) /* {{{ */ in spl_array_has_dimension()
659 return spl_array_has_dimension_ex(1, object, offset, check_empty TSRMLS_CC); in spl_array_has_dimension()
/PHP-5.5/ext/com_dotnet/
H A Dcom_saproxy.c296 static int saproxy_property_exists(zval *object, zval *member, int check_empty, const zend_literal … in saproxy_property_exists() argument
302 static int saproxy_dimension_exists(zval *object, zval *member, int check_empty TSRMLS_DC) in saproxy_dimension_exists()
H A Dcom_handlers.c199 static int com_property_exists(zval *object, zval *member, int check_empty, const zend_literal *key… in com_property_exists() argument
219 static int com_dimension_exists(zval *object, zval *member, int check_empty TSRMLS_DC) in com_dimension_exists()
/PHP-5.5/ext/simplexml/
H A Dsimplexml.c736 static int sxe_prop_dim_exists(zval *object, zval *member, int check_empty, zend_bool elements, zen… in sxe_prop_dim_exists() argument
803 if (exists && check_empty == 1 && in sxe_prop_dim_exists()
830 if (check_empty == 1 && in sxe_prop_dim_exists()
849 static int sxe_property_exists(zval *object, zval *member, int check_empty, const zend_literal *key… in sxe_property_exists() argument
851 return sxe_prop_dim_exists(object, member, check_empty, 1, 0 TSRMLS_CC); in sxe_property_exists()
857 static int sxe_dimension_exists(zval *object, zval *member, int check_empty TSRMLS_DC) in sxe_dimension_exists()
859 return sxe_prop_dim_exists(object, member, check_empty, 0, 1 TSRMLS_CC); in sxe_dimension_exists()
/PHP-5.5/ext/dom/
H A Dphp_dom.c421 static int dom_property_exists(zval *object, zval *member, int check_empty, const zend_literal *key… in dom_property_exists() argument
445 if (check_empty == 2) { in dom_property_exists()
450 if (check_empty == 1) { in dom_property_exists()
452 } else if (check_empty == 0) { in dom_property_exists()
459 retval = std_hnd->has_property(object, member, check_empty, key TSRMLS_CC); in dom_property_exists()
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c2628 static int row_prop_exists(zval *object, zval *member, int check_empty, const zend_literal *key TSR… in row_prop_exists() argument
2652 static int row_dim_exists(zval *object, zval *member, int check_empty TSRMLS_DC) in row_dim_exists()
2654 return row_prop_exists(object, member, check_empty, NULL TSRMLS_CC); in row_dim_exists()

Completed in 86 milliseconds