| /PHP_5_4/ext/spl/examples/ |
| H A D | keyfilter.inc | 18 * are strings. In other words you can put an iterator into the constructor
|
| /PHP_5_4/ext/spl/internal/ |
| H A D | cachingiterator.inc | 129 * @throw exception when CALL_TOSTRING was not specified in constructor
|
| H A D | filteriterator.inc | 19 * you can put an iterator into the constructor and the instance will only
|
| H A D | iteratoriterator.inc | 63 /** \return the inner iterator as passed to the constructor
|
| H A D | limititerator.inc | 53 * specified in constructor). 73 /** Rewind to offset specified in constructor 109 * constructor).
|
| H A D | recursivecachingiterator.inc | 83 * constructor this fucntion returns false so that getChildren does
|
| H A D | recursiveiteratoriterator.inc | 60 /** Rewind to top iterator as set in constructor
|
| H A D | spldoublylinkedlist.inc | 143 /** Rewind to top iterator as set in constructor
|
| H A D | splobjectstorage.inc | 28 /** Rewind to top iterator as set in constructor
|
| /PHP_5_4/scripts/dev/generate-phpt/src/ |
| H A D | gtMethod.php | 29 * 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/ext/interbase/ |
| H A D | php_ibase_udf.c | 130 static void __attribute__((constructor)) init()
|
| /PHP_5_4/ext/pdo/ |
| H A D | pdo_dbh.c | 429 pdo_raise_impl_error(dbh, NULL, "HY000", "constructor arguments must be passed as an array" TSRMLS_CC); 432 if (!dbstmt_ce->constructor) { 433 pdo_raise_impl_error(dbh, NULL, "HY000", "user-supplied statement does not accept constructor arguments" TSRMLS_CC); 457 if (dbstmt_ce->constructor) { 486 fcc.function_handler = dbstmt_ce->constructor; 544 if (dbstmt_ce->constructor && !(dbstmt_ce->constructor->common.fn_flags & (ZEND_ACC_PRIVATE|ZEND_ACC_PROTECTED))) { 546 "user-supplied statement class cannot have a public constructor" TSRMLS_CC); 812 if ((*pce)->constructor && !((*pce)->constructor [all...] |
| H A D | pdo_stmt.c | 755 if (ce->constructor) { 778 fcc->function_handler = ce->constructor; 783 pdo_raise_impl_error(stmt->dbh, stmt, "HY000", "user-supplied class does not have a constructor, use NULL for the ctor_params parameter, or simply omit it" TSRMLS_CC); 977 if (ce->constructor && (flags & PDO_FETCH_PROPS_LATE)) { 981 pdo_raise_impl_error(stmt->dbh, stmt, "HY000", "could not call class constructor" TSRMLS_CC); 1177 if (ce->constructor && !(flags & (PDO_FETCH_PROPS_LATE | PDO_FETCH_SERIALIZE))) { 1181 pdo_raise_impl_error(stmt->dbh, stmt, "HY000", "could not call class constructor" TSRMLS_CC);
|
| /PHP_5_4/ext/spl/ |
| H A D | spl_engine.h | 37 zend_call_method(retval, pce, &pce->constructor, pce->constructor->common.function_name, strlen(pce->constructor->common.function_name), NULL, 1, arg1, NULL TSRMLS_CC); 47 zend_call_method(retval, pce, &pce->constructor, pce->constructor->common.function_name, strlen(pce->constructor->common.function_name), NULL, 2, arg1, arg2 TSRMLS_CC);
|
| H A D | spl_directory.c | 451 if (ce->constructor->common.scope != spl_ce_SplFileInfo) { 454 zend_call_method_with_1_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1); 495 if (ce->constructor->common.scope != spl_ce_SplFileInfo) { 498 zend_call_method_with_1_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1); 517 if (ce->constructor->common.scope != spl_ce_SplFileObject) { 522 zend_call_method_with_2_params(&return_value, ce, &ce->constructor, "__construct", NULL, arg1, arg2); 1111 the constructor fails. Here we use this to ensure the object 1114 When the constructor gets called the object is already created 1416 "The parent constructor was not called: the object is in an "
|
| /PHP_5_4/main/streams/ |
| H A D | userspace.c | 300 if (uwrap->ce->constructor) { 316 fcc.function_handler = uwrap->ce->constructor; 322 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not execute %s::%s()", uwrap->ce->name, uwrap->ce->constructor->common.function_name);
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli.c | 1122 EX(function_state).function = pce->constructor; 1123 zend_call_method_with_1_params(&ref, pce, &pce->constructor, "__construct", NULL, arg); 1347 * because the executor's constructor does not set initialize it.
|
| /PHP_5_4/Zend/ |
| H A D | zend_object_handlers.c | 1164 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; 1295 zend_function *constructor = zobj->ce->constructor; local 1297 if (constructor) { 1298 if (constructor->op_array.fn_flags & ZEND_ACC_PUBLIC) { 1300 } else if (constructor [all...] |
| H A D | zend_compile.c | 1630 if (!CG(active_class_entry)->constructor) { 1631 CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array); 1634 if (CG(active_class_entry)->constructor) { 1635 zend_error(E_STRICT, "Redefining already defined constructor for class %s", CG(active_class_entry)->name); 1637 CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array); 2856 if (ce->constructor) { 2857 if (ce->parent->constructor && ce->parent->constructor->common.fn_flags & ZEND_ACC_FINAL) { 2859 ce->parent->name, ce->parent->constructor->common.function_name, 2860 ce->name, ce->constructor [all...] |
| H A D | zend_vm_def.h | 2299 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;
|
| /PHP_5_4/ext/reflection/ |
| H A D | php_reflection.c | 1408 fcc.function_handler = ce_ptr->constructor; 3160 Returns whether this method is the constructor */ 3173 RETURN_BOOL(mptr->common.fn_flags & ZEND_ACC_CTOR && intern->ce->constructor && intern->ce->constructor->common.scope == mptr->common.scope); 3629 Returns the class' constructor if there is one, NULL otherwise */ 3640 if (ce->constructor) { 3641 reflection_method_factory(ce, ce->constructor, NULL, return_value TSRMLS_CC); 4074 /* Basically, the class is instantiable. Though, if there is a constructor 4076 if (!ce->constructor) { 4080 RETURN_BOOL(ce->constructor [all...] |
| /PHP_5_4/ext/mysqli/ |
| H A D | mysqli.c | 1011 constructor for statement object. 1068 constructor for result object. 1269 if (ce->constructor) { 1305 fcc.function_handler = ce->constructor; 1311 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->common.function_name); 1321 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Class %s does not have a constructor hence you cannot use ctor_params", ce->name);
|
| /PHP_5_4/ext/soap/ |
| H A D | soap.c | 773 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...] |
| /PHP_5_4/ext/mysql/ |
| H A D | php_mysql.c | 2165 if (ce->constructor) { 2201 fcc.function_handler = ce->constructor; 2207 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Could not execute %s::%s()", ce->name, ce->constructor->common.function_name); 2217 zend_throw_exception_ex(zend_exception_get_default(TSRMLS_C), 0 TSRMLS_CC, "Class %s does not have a constructor hence you cannot use ctor_params", ce->name);
|
| /PHP_5_4/ext/phar/ |
| H A D | phar_object.c | 1148 * This function is used as the constructor for both the Phar and PharData 1183 zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Cannot call constructor twice"); 1272 &spl_ce_RecursiveDirectoryIterator->constructor, "__construct", NULL, &arg1, &arg2); 1848 &spl_ce_RecursiveDirectoryIterator->constructor, "__construct", NULL, &arg, &arg2); 1865 &spl_ce_RecursiveIteratorIterator->constructor, "__construct", NULL, iter); 1890 &spl_ce_RegexIterator->constructor, "__construct", NULL, iteriter, &arg2); 2282 zend_call_method_with_1_params(&ret, ce, &ce->constructor, "__construct", NULL, &arg1); 4506 zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Cannot call constructor twice"); 4547 &spl_ce_SplFileInfo->constructor, "__construct", NULL, &arg1);
|