Searched refs:base_ce (Results 1 – 3 of 3) sorted by relevance
/php-src/Zend/ |
H A D | zend_exceptions.c | 100 zend_class_entry *base_ce; in zend_exception_set_previous() local 128 base_ce = i_get_exception_base(Z_OBJ_P(ex)); in zend_exception_set_previous() 262 zend_class_entry *base_ce; in zend_default_exception_new() local 277 base_ce = i_get_exception_base(object); in zend_default_exception_new() 282 zend_update_property_ex(base_ce, object, ZSTR_KNOWN(ZEND_STR_FILE), &tmp); in zend_default_exception_new() 312 zend_class_entry *base_ce; in ZEND_METHOD() local 315 base_ce = i_get_exception_base(Z_OBJ_P(object)); in ZEND_METHOD() 625 zend_class_entry *base_ce = i_get_exception_base(Z_OBJ_P(object)); in ZEND_METHOD() local 653 zend_class_entry *base_ce; in ZEND_METHOD() local 729 …ption) == IS_OBJECT && (base_ce = i_get_exception_base(Z_OBJ_P(exception))) && instanceof_function… in ZEND_METHOD() [all …]
|
H A D | zend_API.h | 1771 #define Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, allow_null)… argument 1773 …if (UNEXPECTED(!zend_parse_arg_obj_or_str(_arg, &destination_object, base_ce, &destination_string,… 1774 if (base_ce) { \ 1775 _error = ZSTR_VAL((base_ce)->name); \ 1785 #define Z_PARAM_OBJ_OF_CLASS_OR_STR(destination_object, base_ce, destination_string) \ argument 1786 Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, 0); 1788 #define Z_PARAM_OBJ_OF_CLASS_OR_STR_OR_NULL(destination_object, base_ce, destination_string) \ argument 1789 Z_PARAM_OBJ_OF_CLASS_OR_STR_EX(destination_object, base_ce, destination_string, 1); 2569 …zval *arg, zend_object **destination_object, zend_class_entry *base_ce, zend_string **destination_… in zend_parse_arg_obj_or_str() argument 2572 if (!base_ce || EXPECTED(instanceof_function(Z_OBJCE_P(arg), base_ce))) { in zend_parse_arg_obj_or_str()
|
/php-src/ext/date/ |
H A D | php_date.c | 5050 static bool date_period_init_iso8601_string(php_period_obj *dpobj, zend_class_entry* base_ce, char … in date_period_init_iso8601_string() argument 5081 dpobj->start_ce = base_ce; in date_period_init_iso8601_string()
|
Completed in 32 milliseconds