Lines Matching refs:class_type

223 static zend_object_value spl_fixedarray_object_new_ex(zend_class_entry *class_type, spl_fixedarray_…  in spl_fixedarray_object_new_ex()  argument
227 zend_class_entry *parent = class_type; in spl_fixedarray_object_new_ex()
234 zend_object_std_init(&intern->std, class_type TSRMLS_CC); in spl_fixedarray_object_new_ex()
235 object_properties_init(&intern->std, class_type); in spl_fixedarray_object_new_ex()
256 class_type->get_iterator = spl_fixedarray_get_iterator; in spl_fixedarray_object_new_ex()
269 if (!class_type->iterator_funcs.zf_current) { in spl_fixedarray_object_new_ex()
270 …zend_hash_find(&class_type->function_table, "rewind", sizeof("rewind"), (void **) &class_type->i… in spl_fixedarray_object_new_ex()
271 …zend_hash_find(&class_type->function_table, "valid", sizeof("valid"), (void **) &class_type->i… in spl_fixedarray_object_new_ex()
272 …zend_hash_find(&class_type->function_table, "key", sizeof("key"), (void **) &class_type->i… in spl_fixedarray_object_new_ex()
273 …zend_hash_find(&class_type->function_table, "current", sizeof("current"), (void **) &class_type->i… in spl_fixedarray_object_new_ex()
274 …zend_hash_find(&class_type->function_table, "next", sizeof("next"), (void **) &class_type->i… in spl_fixedarray_object_new_ex()
277 if (class_type->iterator_funcs.zf_rewind->common.scope != parent) { in spl_fixedarray_object_new_ex()
280 if (class_type->iterator_funcs.zf_valid->common.scope != parent) { in spl_fixedarray_object_new_ex()
283 if (class_type->iterator_funcs.zf_key->common.scope != parent) { in spl_fixedarray_object_new_ex()
286 if (class_type->iterator_funcs.zf_current->common.scope != parent) { in spl_fixedarray_object_new_ex()
289 if (class_type->iterator_funcs.zf_next->common.scope != parent) { in spl_fixedarray_object_new_ex()
293 …zend_hash_find(&class_type->function_table, "offsetget", sizeof("offsetget"), (void **) &int… in spl_fixedarray_object_new_ex()
297 …zend_hash_find(&class_type->function_table, "offsetset", sizeof("offsetset"), (void **) &int… in spl_fixedarray_object_new_ex()
301 …zend_hash_find(&class_type->function_table, "offsetexists", sizeof("offsetexists"), (void **) &int… in spl_fixedarray_object_new_ex()
305 …zend_hash_find(&class_type->function_table, "offsetunset", sizeof("offsetunset"), (void **) &int… in spl_fixedarray_object_new_ex()
309 …zend_hash_find(&class_type->function_table, "count", sizeof("count"), (void **) &int… in spl_fixedarray_object_new_ex()
319 static zend_object_value spl_fixedarray_new(zend_class_entry *class_type TSRMLS_DC) /* {{{ */ in spl_fixedarray_new()
322 return spl_fixedarray_object_new_ex(class_type, &tmp, NULL, 0 TSRMLS_CC); in spl_fixedarray_new()