prototype        2071 Zend/zend_API.c 		internal_function->prototype = NULL;
prototype         466 Zend/zend_closures.c 	closure->func.common.prototype = NULL;
prototype        1575 Zend/zend_compile.c 	op_array.prototype = NULL;
prototype        3552 Zend/zend_compile.c 		&& parent->common.scope != (child->common.prototype ? child->common.prototype->common.scope : child->common.scope)
prototype        3557 Zend/zend_compile.c 			child->common.prototype ? child->common.prototype->common.scope->name : child->common.scope->name);
prototype        3594 Zend/zend_compile.c 		child->common.prototype = NULL;
prototype        3597 Zend/zend_compile.c 		child->common.prototype = parent;
prototype        3598 Zend/zend_compile.c 	} else if (!(parent->common.fn_flags & ZEND_ACC_CTOR) || (parent->common.prototype && (parent->common.prototype->common.scope->ce_flags & ZEND_ACC_INTERFACE))) {
prototype        3600 Zend/zend_compile.c 		child->common.prototype = parent->common.prototype ? parent->common.prototype : parent;
prototype        3603 Zend/zend_compile.c 	if (child->common.prototype && (child->common.prototype->common.fn_flags & ZEND_ACC_ABSTRACT)) {
prototype        3604 Zend/zend_compile.c 		if (!zend_do_perform_implementation_check(child, child->common.prototype TSRMLS_CC)) {
prototype        3605 Zend/zend_compile.c 			zend_error_noreturn(E_COMPILE_ERROR, "Declaration of %s::%s() must be compatible with %s", ZEND_FN_SCOPE_NAME(child), child->common.function_name, zend_get_function_declaration(child->common.prototype TSRMLS_CC));
prototype        4087 Zend/zend_compile.c 			fn->common.prototype = NULL;
prototype         273 Zend/zend_compile.h 	union _zend_function *prototype;
prototype         330 Zend/zend_compile.h 	union _zend_function *prototype;
prototype         350 Zend/zend_compile.h 		union _zend_function *prototype;
prototype         155 Zend/zend_object_handlers.h 	((fbc)->common.prototype ? (fbc)->common.prototype->common.scope : (fbc)->common.scope)
prototype        1835 Zend/zend_vm_def.h 	if ((op_array->fn_flags & ZEND_ACC_CLOSURE) && op_array->prototype) {
prototype        1836 Zend/zend_vm_def.h 		zval_ptr_dtor((zval**)&op_array->prototype);
prototype        2696 Zend/zend_vm_def.h 				call->fbc->common.prototype = (zend_function*)function_name;
prototype         404 Zend/zend_vm_execute.h 	if ((op_array->fn_flags & ZEND_ACC_CLOSURE) && op_array->prototype) {
prototype         405 Zend/zend_vm_execute.h 		zval_ptr_dtor((zval**)&op_array->prototype);
prototype        1500 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
prototype        1844 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
prototype        2043 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
prototype        2279 Zend/zend_vm_execute.h 				call->fbc->common.prototype = (zend_function*)function_name;
prototype         548 ext/opcache/zend_accelerator_util_funcs.c 		if (new_entry->prototype) {
prototype         549 ext/opcache/zend_accelerator_util_funcs.c 			if (accel_xlat_get(new_entry->prototype, new_prototype) == SUCCESS) {
prototype         550 ext/opcache/zend_accelerator_util_funcs.c 				new_entry->prototype = *new_prototype;
prototype         454 ext/opcache/zend_persist.c 	if (op_array->scope && op_array->prototype) {
prototype         455 ext/opcache/zend_persist.c 		if ((persist_ptr = zend_shared_alloc_get_xlat_entry(op_array->prototype))) {
prototype         456 ext/opcache/zend_persist.c 			op_array->prototype = (union _zend_function*)persist_ptr;
prototype         458 ext/opcache/zend_persist.c 			op_array->prototype->op_array.refcount++;
prototype         461 ext/opcache/zend_persist.c 		op_array->prototype = NULL;
prototype        1312 ext/pdo/pdo_dbh.c 		ifunc->prototype = NULL;
prototype         894 ext/reflection/php_reflection.c 	if (fptr->common.prototype && fptr->common.prototype->common.scope) {
prototype         895 ext/reflection/php_reflection.c 		string_printf(str, ", prototype %s", fptr->common.prototype->common.scope->name);
prototype        3317 ext/reflection/php_reflection.c 	if (!mptr->common.prototype) {
prototype        3323 ext/reflection/php_reflection.c 	reflection_method_factory(mptr->common.prototype->common.scope, mptr->common.prototype, NULL, return_value TSRMLS_CC);
prototype         639 ext/soap/soap.c 		fe.prototype = NULL;