Searched defs:constructor (Results 1 - 6 of 6) sorted by relevance

/PHP_5_4/scripts/dev/generate-phpt/src/
H A DgtMethod.php29 * Set the names of the class constructor arguments. Take only mandatory argument names.
34 $constructor = $reflectionClass->getConstructor(); variable
35 foreach($constructor->getParameters() as $i => $param) {
64 * Return the list of constructor argument names
92 * Set the list of arguments to be passed to the constructor
107 * Return the list of the arguments to be passed to the constructor
117 * Set up the source statements that initialise constructor arguments;
131 * Return the constructor initialisation statements
/PHP_5_4/Zend/
H A Dzend.h483 union _zend_function *constructor; member in struct:_zend_class_entry
569 /* All data types <= IS_BOOL have their constructor/destructors skipped */
H A Dzend_vm_def.h2299 if (UNEXPECTED(ce->constructor == NULL)) {
2300 zend_error_noreturn(E_ERROR, "Cannot call constructor");
2302 if (EG(This) && Z_OBJCE_P(EG(This)) != ce->constructor->common.scope && (ce->constructor->common.fn_flags & ZEND_ACC_PRIVATE)) {
2305 EX(fbc) = ce->constructor;
3344 zend_function *constructor; variable
3360 constructor = Z_OBJ_HT_P(object_zval)->get_constructor(object_zval TSRMLS_CC);
3362 if (constructor == NULL) {
3379 EX(fbc) = constructor;
H A Dzend_vm_execute.h802 zend_function *constructor; local
818 constructor = Z_OBJ_HT_P(object_zval)->get_constructor(object_zval TSRMLS_CC);
820 if (constructor == NULL) {
837 EX(fbc) = constructor;
3489 if (UNEXPECTED(ce->constructor == NULL)) {
3490 zend_error_noreturn(E_ERROR, "Cannot call constructor");
3492 if (EG(This) && Z_OBJCE_P(EG(This)) != ce->constructor->common.scope && (ce->constructor->common.fn_flags & ZEND_ACC_PRIVATE)) {
3495 EX(fbc) = ce->constructor;
4291 if (UNEXPECTED(ce->constructor
[all...]
H A Dzend_object_handlers.c1164 if (function_name_strlen == ce->name_length && ce->constructor) {
1166 /* Only change the method to the constructor if the constructor isn't called __construct
1169 if (!memcmp(lc_class_name, lc_function_name, function_name_strlen) && memcmp(ce->constructor->common.function_name, "__", sizeof("__") - 1)) {
1170 fbc = ce->constructor;
1303 zend_function *constructor = zobj->ce->constructor; local
1305 if (constructor) {
1306 if (constructor->op_array.fn_flags & ZEND_ACC_PUBLIC) {
1308 } else if (constructor
[all...]
/PHP_5_4/ext/soap/
H A Dsoap.c773 SoapParam constructor */
795 SoapHeader constructor */
835 SoapFault constructor */
890 SoapFault constructor */
933 SoapVar constructor */
1093 SoapServer constructor */
1679 /* Call constructor */
1681 zval c_ret, constructor; local
1684 INIT_ZVAL(constructor);
1686 ZVAL_STRING(&constructor, ZEND_CONSTRUCTOR_FUNC_NAM
1709 zval c_ret, constructor; local
[all...]

Completed in 55 milliseconds