/PHP-8.3/Zend/ |
H A D | zend_closures_arginfo.h | 9 ZEND_ARG_TYPE_INFO(0, newThis, IS_OBJECT, 1) 14 ZEND_ARG_TYPE_INFO(0, newThis, IS_OBJECT, 1) 19 ZEND_ARG_TYPE_INFO(0, newThis, IS_OBJECT, 0)
|
H A D | zend_weakrefs_arginfo.h | 8 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0) 11 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_WeakReference_get, 0, 0, IS_OBJECT, 1)
|
H A D | zend_iterators.c | 100 ZEND_ASSERT(Z_TYPE_P(array_ptr) == IS_OBJECT); in zend_iterator_unwrap()
|
H A D | zend_type_info.h | 33 #define MAY_BE_OBJECT (1 << IS_OBJECT)
|
H A D | zend_operators.c | 274 case IS_OBJECT: in convert_scalar_to_number() 310 case IS_OBJECT: in _zendi_convert_scalar_to_number_silent() 352 case IS_OBJECT: in _zendi_try_convert_scalar_to_number() 436 case IS_OBJECT: in zendi_try_get_long() 575 case IS_OBJECT: in convert_to_long() 634 case IS_OBJECT: in convert_to_double() 706 case IS_OBJECT: in convert_to_boolean() 812 case IS_OBJECT: in convert_to_array() 875 case IS_OBJECT: in convert_to_object() 954 case IS_OBJECT: in zval_get_long_func() [all …]
|
H A D | zend_variables.c | 48 [IS_OBJECT] = (zend_rc_dtor_func_t)zend_objects_store_del,
|
H A D | zend_vm_execute.h | 5485 if (Z_TYPE(EX(This)) == IS_OBJECT) { in ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_HANDLER() 10989 if (Z_TYPE_P(op1) == IS_OBJECT) { in ZEND_GET_CLASS_SPEC_CONST_UNUSED_HANDLER() 15091 if (Z_TYPE_P(op) != IS_OBJECT) { in ZEND_FETCH_CLASS_NAME_SPEC_TMPVAR_HANDLER() 16442 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_TMPVAR_CONST_HANDLER() 17860 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_TMPVAR_VAR_HANDLER() 18152 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_TMPVAR_UNUSED_HANDLER() 32622 if (Z_TYPE_P(op) != IS_OBJECT) { in ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER() 40449 if (Z_TYPE_P(op) != IS_OBJECT) { in ZEND_FETCH_CLASS_NAME_SPEC_CV_HANDLER() 44166 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_CV_CONST_HANDLER() 48148 if (Z_TYPE_P(expr) == IS_OBJECT) { in ZEND_INSTANCEOF_SPEC_CV_VAR_HANDLER() [all …]
|
H A D | zend_gc.c | 434 if (GC_TYPE(ref) == IS_OBJECT) { in gc_trace_ref() 639 ZEND_ASSERT(GC_TYPE(ref) == IS_ARRAY || GC_TYPE(ref) == IS_OBJECT); in gc_possible_root_when_full() 698 ZEND_ASSERT(GC_TYPE(ref) == IS_ARRAY || GC_TYPE(ref) == IS_OBJECT); in gc_possible_root() 732 ZEND_ASSERT(GC_TYPE(ref) == IS_ARRAY || GC_TYPE(ref) == IS_OBJECT); in gc_extra_root() 785 if (GC_TYPE(ref) == IS_OBJECT) { in gc_scan_black() 986 if (GC_TYPE(ref) == IS_OBJECT) { in gc_mark_grey() 1233 if (GC_TYPE(ref) == IS_OBJECT) { in gc_scan() 1432 if (GC_TYPE(ref) == IS_OBJECT) { in gc_collect_white() 1673 if (GC_TYPE(ref) == IS_OBJECT) { in gc_remove_nested_data_from_buffer() 1850 if (GC_TYPE(p) == IS_OBJECT && !(OBJ_FLAGS(p) & IS_OBJ_DESTRUCTOR_CALLED)) { in zend_gc_collect_cycles() [all …]
|
H A D | zend_object_handlers.h | 274 if (Z_TYPE_P(op1) != IS_OBJECT || \ 275 Z_TYPE_P(op2) != IS_OBJECT || \
|
H A D | zend_exceptions.c | 119 while (Z_TYPE_P(ancestor) == IS_OBJECT) { in zend_exception_set_previous() 519 case IS_OBJECT: { in _build_trace_args() 666 …while (exception && Z_TYPE_P(exception) == IS_OBJECT && instanceof_function(Z_OBJCE_P(exception), … in ZEND_METHOD() 727 if (Z_TYPE_P(exception) == IS_OBJECT && Z_IS_RECURSIVE_P(exception)) { in ZEND_METHOD() 735 …while (Z_TYPE_P(exception) == IS_OBJECT && (base_ce = i_get_exception_base(Z_OBJ_P(exception))) &&… in ZEND_METHOD() 997 if (exception == NULL || Z_TYPE_P(exception) != IS_OBJECT) { in zend_throw_exception_object()
|
H A D | zend_vm_def.h | 3447 if (Z_TYPE_P(class_name) == IS_OBJECT) { 3740 if (Z_TYPE(EX(This)) == IS_OBJECT) { 6682 if (Z_TYPE_P(container) != IS_OBJECT) { 7897 if (Z_TYPE_P(expr) == IS_OBJECT) { 8166 if (Z_TYPE(EX(This)) == IS_OBJECT) { 8725 if (Z_TYPE_P(op) != IS_OBJECT) { 8764 if (Z_TYPE(EX(This)) == IS_OBJECT) { 9063 (Z_TYPE(EX(This)) == IS_OBJECT)); 9311 } else if (Z_TYPE_P(op1) == IS_OBJECT) { 9392 if (Z_TYPE_P(op1) == IS_OBJECT) { [all …]
|
/PHP-8.3/ext/xsl/ |
H A D | php_xsl_arginfo.h | 5 ZEND_ARG_TYPE_INFO(0, stylesheet, IS_OBJECT, 0) 9 ZEND_ARG_TYPE_INFO(0, document, IS_OBJECT, 0) 14 ZEND_ARG_TYPE_INFO(0, document, IS_OBJECT, 0) 19 ZEND_ARG_TYPE_INFO(0, document, IS_OBJECT, 0)
|
/PHP-8.3/ext/spl/ |
H A D | spl_observer_arginfo.h | 18 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0) 23 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0) 27 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0) 57 …_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_SplObjectStorage_current, 0, 0, IS_OBJECT, 0) 87 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0)
|
H A D | php_spl_arginfo.h | 42 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0) 46 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0)
|
H A D | php_spl.c | 82 if (Z_TYPE_P(obj) != IS_OBJECT && Z_TYPE_P(obj) != IS_STRING) { in PHP_FUNCTION() 115 if (Z_TYPE_P(obj) != IS_OBJECT && Z_TYPE_P(obj) != IS_STRING) { in PHP_FUNCTION() 144 if (Z_TYPE_P(obj) != IS_OBJECT && Z_TYPE_P(obj) != IS_STRING) { in PHP_FUNCTION() 396 if (Z_TYPE(fci->function_name) == IS_OBJECT) { in autoload_func_info_from_fci()
|
H A D | spl_observer.c | 449 …if (UNEXPECTED(offset == NULL || Z_TYPE_P(offset) != IS_OBJECT || (intern->flags & SOS_OVERRIDDEN_… in spl_object_storage_has_dimension() 468 …if (UNEXPECTED(offset == NULL || Z_TYPE_P(offset) != IS_OBJECT || (intern->flags & SOS_OVERRIDDEN_… in spl_object_storage_read_dimension() 491 …if (UNEXPECTED(offset == NULL || Z_TYPE_P(offset) != IS_OBJECT || (intern->flags & SOS_OVERRIDDEN_… in spl_object_storage_write_dimension() 501 …if (UNEXPECTED(Z_TYPE_P(offset) != IS_OBJECT || (intern->flags & SOS_OVERRIDDEN_UNSET_DIMENSION)))… in spl_object_storage_unset_dimension() 891 if (Z_TYPE_P(entry) != IS_OBJECT) { in PHP_METHOD() 1002 if (Z_TYPE_P(key) != IS_OBJECT) { in PHP_METHOD()
|
/PHP-8.3/ext/standard/ |
H A D | http.c | 154 if (Z_TYPE_P(zdata) == IS_ARRAY || Z_TYPE_P(zdata) == IS_OBJECT) { in php_url_encode_hash_ex() 196 …sh_ex(HASH_OF(zdata), formstr, NULL, 0, new_prefix, (Z_TYPE_P(zdata) == IS_OBJECT ? zdata : NULL),… in php_url_encode_hash_ex() 233 …mstr, prefix, prefix_len, /* key_prefix */ NULL, (Z_TYPE_P(formdata) == IS_OBJECT ? formdata : NUL… in PHP_FUNCTION()
|
H A D | type.c | 63 case IS_OBJECT: in PHP_FUNCTION() 341 php_is_type(INTERNAL_FUNCTION_PARAM_PASSTHRU, IS_OBJECT); in PHP_FUNCTION()
|
H A D | var.c | 149 case IS_OBJECT: { in php_var_dump() 346 case IS_OBJECT: { in php_debug_zval_dump() 560 case IS_OBJECT: { in php_var_export_ex() 680 } else if (Z_TYPE_P(var) != IS_OBJECT) { in php_add_var_hash() 689 if (is_ref && Z_TYPE_P(Z_REFVAL_P(var)) == IS_OBJECT) { in php_add_var_hash() 1022 } else if (Z_TYPE_P(struc) == IS_OBJECT) { in php_var_serialize_intern() 1065 case IS_OBJECT: { in php_var_serialize_intern()
|
/PHP-8.3/sapi/fuzzer/ |
H A D | fuzzer-unserializehash.c | 58 if (Z_TYPE(result) == IS_OBJECT in LLVMFuzzerTestOneInput()
|
/PHP-8.3/ext/reflection/ |
H A D | php_reflection_arginfo.h | 28 …VE_RETURN_TYPE_INFO_EX(arginfo_class_ReflectionFunctionAbstract_getClosureThis, 0, 0, IS_OBJECT, 1) 157 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, object, IS_OBJECT, 1, "null") 163 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 1) 168 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 1) 274 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0) 277 …G_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_ReflectionClass_newInstance, 0, 0, IS_OBJECT, 0) 284 …TH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_ReflectionClass_newInstanceArgs, 0, 0, IS_OBJECT, 1) 330 ZEND_ARG_TYPE_INFO(0, object, IS_OBJECT, 0) 345 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, object, IS_OBJECT, 1, "null") 354 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, object, IS_OBJECT, 1, "null") [all …]
|
/PHP-8.3/ext/intl/timezone/ |
H A D | timezone_class.cpp | 146 if (Z_TYPE_P(zv_timezone) == IS_OBJECT && in timezone_process_timezone_argument() 169 } else if (Z_TYPE_P(zv_timezone) == IS_OBJECT && in timezone_process_timezone_argument()
|
/PHP-8.3/ext/dom/ |
H A D | parentnode.c | 130 if (Z_TYPE(nodes[i]) == IS_OBJECT) { in dom_is_node_in_list() 181 if (Z_TYPE(nodes[i]) == IS_OBJECT) { in dom_zvals_to_fragment() 262 if (type == IS_OBJECT) { in dom_sanity_check_node_list_for_insertion()
|
/PHP-8.3/ext/json/ |
H A D | json_encoder.c | 258 if (ZSTR_VAL(key)[0] == '\0' && ZSTR_LEN(key) > 0 && Z_TYPE_P(val) == IS_OBJECT) { in php_json_encode_array() 595 if ((Z_TYPE(retval) == IS_OBJECT) && in php_json_encode_serializable_object() 658 case IS_OBJECT: in php_json_encode_zval()
|
/PHP-8.3/ext/pdo_mysql/ |
H A D | pdo_mysql.c | 63 if (Z_TYPE_P(zv) == IS_OBJECT && instanceof_function(Z_OBJCE_P(zv), php_pdo_get_dbh_ce())) { in ZEND_GET_MODULE()
|