Home
last modified time | relevance | path

Searched refs:constructor (Results 126 – 150 of 165) sorted by relevance

1234567

/PHP-5.5/ext/spl/internal/
H A Dfilteriterator.inc19 * you can put an iterator into the constructor and the instance will only
H A Diteratoriterator.inc63 /** \return the inner iterator as passed to the constructor
H A Dsplobjectstorage.inc28 /** Rewind to top iterator as set in constructor
H A Dcachingiterator.inc129 * @throw exception when CALL_TOSTRING was not specified in constructor
H A Drecursiveiteratoriterator.inc60 /** Rewind to top iterator as set in constructor
H A Dspldoublylinkedlist.inc143 /** Rewind to top iterator as set in constructor
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c435 if (!dbstmt_ce->constructor) { in pdo_stmt_instantiate()
460 if (dbstmt_ce->constructor) { in pdo_stmt_construct()
489 fcc.function_handler = dbstmt_ce->constructor; in pdo_stmt_construct()
547 …if (dbstmt_ce->constructor && !(dbstmt_ce->constructor->common.fn_flags & (ZEND_ACC_PRIVATE|ZEND_A… in PHP_METHOD()
815 …if ((*pce)->constructor && !((*pce)->constructor->common.fn_flags & (ZEND_ACC_PRIVATE|ZEND_ACC_PRO… in pdo_dbh_attribute_set()
H A DTODO17 for each driver option specified in the constructor.
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_close.phpt27 // Yes, amazing, eh? AFAIK a work around of a constructor bug...
H A Dmysqli_class_mysqli_result_interface.phpt51 // get_class_method reports different constructor names
/PHP-5.5/ext/spl/tests/
H A Dbug54384.phpt2 Bug #54384: Several SPL classes crash when the parent constructor is not called
/PHP-5.5/ext/standard/tests/array/
H A Darray_fill_object.phpt55 //class with private member, static member, constant and constructor to initialize the private memb…
111 // class with public, private, protected members, static, constant members and constructor to initi…
H A Darray_fill_object_2_4.phpt55 //class with private member, static member, constant and constructor to initialize the private memb…
111 // class with public, private, protected members, static, constant members and constructor to initi…
/PHP-5.5/ext/intl/tests/
H A Ddateformat_formatObject_error.phpt48 …stamp(): The DateTime object has not been correctly initialized by its constructor in %s on line %d
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_constructor_error1.phpt2 ReflectionMethod constructor errors
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar856 * Set the names of the class constructor arguments. Take only mandatory argument names.
861 $constructor = $reflectionClass->getConstructor();
862 foreach($constructor->getParameters() as $i => $param) {
891 * Return the list of constructor argument names
919 * Set the list of arguments to be passed to the constructor
934 * Return the list of the arguments to be passed to the constructor
944 * Set up the source statements that initialise constructor arguments;
958 * Return the constructor initialisation statements
1458 * Add constructor argument initialisation to test case
/PHP-5.5/tests/lang/
H A Dbug20175.phpt89 * counts the calls to the constructor of oop_class and hence counts the
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c1408 fcc.function_handler = ce_ptr->constructor; in _reflection_export()
3181 …OOL(mptr->common.fn_flags & ZEND_ACC_CTOR && intern->ce->constructor && intern->ce->constructor->c… in ZEND_METHOD()
3648 if (ce->constructor) { in ZEND_METHOD()
4084 if (!ce->constructor) { in ZEND_METHOD()
4197 zend_function *constructor; in ZEND_METHOD() local
4210 if (constructor) { in ZEND_METHOD()
4216 if (!(constructor->common.fn_flags & ZEND_ACC_PUBLIC)) { in ZEND_METHOD()
4241 fcc.function_handler = constructor; in ZEND_METHOD()
4296 zend_function *constructor; in ZEND_METHOD() local
4318 if (constructor) { in ZEND_METHOD()
[all …]
/PHP-5.5/ext/interbase/
H A Dphp_ibase_udf.c128 static void __attribute__((constructor)) init() in init()
/PHP-5.5/Zend/
H A Dzend_compile.c1638 if (!CG(active_class_entry)->constructor) { in zend_do_begin_function_declaration()
1642 if (CG(active_class_entry)->constructor) { in zend_do_begin_function_declaration()
3049 if (ce->constructor) { in do_inherit_parent_constructor()
3050 if (ce->parent->constructor && ce->parent->constructor->common.fn_flags & ZEND_ACC_FINAL) { in do_inherit_parent_constructor()
3053 ce->name, ce->constructor->common.function_name in do_inherit_parent_constructor()
3083 ce->constructor = ce->parent->constructor; in do_inherit_parent_constructor()
3845 if (ce->constructor && (!ce->parent || ce->constructor != ce->parent->constructor)) { in zend_add_magic_methods()
3870 if (ce->constructor && (!ce->parent || ce->constructor != ce->parent->constructor)) { in zend_add_magic_methods()
3873 ce->constructor = fe; in zend_add_magic_methods()
5112 if (ce->constructor) { in zend_do_end_class_declaration()
[all …]
/PHP-5.5/Zend/RFCs/
H A D002.txt93 5 // constructor
/PHP-5.5/ext/mysqli/
H A Dmysqli.c1290 if (ce->constructor) { in php_mysqli_fetch_into_hash()
1326 fcc.function_handler = ce->constructor; in php_mysqli_fetch_into_hash()
1332 …lt(TSRMLS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->common.functio… in php_mysqli_fetch_into_hash()
/PHP-5.5/ext/soap/
H A Dsoap.c1698 zval c_ret, constructor; local
1701 INIT_ZVAL(constructor);
1703 ZVAL_STRING(&constructor, ZEND_CONSTRUCTOR_FUNC_NAME, 1);
1704 …if (call_user_function(NULL, &tmp_soap, &constructor, &c_ret, service->soap_class.argc, service->s…
1713 zval_dtor(&constructor);
1718 zval_dtor(&constructor);
1726 zval c_ret, constructor; local
1729 INIT_ZVAL(constructor);
1731 ZVAL_STRING(&constructor, service->soap_class.ce->name, 1);
1742 zval_dtor(&constructor);
[all …]
/PHP-5.5/sapi/cli/
H A Dphp_cli.c1128 EX(function_state).function = pce->constructor; in do_cli()
1129 zend_call_method_with_1_params(&ref, pce, &pce->constructor, "__construct", NULL, arg); in do_cli()
/PHP-5.5/main/streams/
H A Duserspace.c300 if (uwrap->ce->constructor) { in user_stream_create_object()
316 fcc.function_handler = uwrap->ce->constructor; in user_stream_create_object()
322 …, E_WARNING, "Could not execute %s::%s()", uwrap->ce->name, uwrap->ce->constructor->common.functio… in user_stream_create_object()

Completed in 91 milliseconds

1234567