| /PHP_TRUNK/ext/spl/examples/ |
| H A D | keyfilter.inc | 18 * are strings. In other words you can put an iterator into the constructor
|
| /PHP_TRUNK/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_TRUNK/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_TRUNK/ext/interbase/ |
| H A D | php_ibase_udf.c | 130 static void __attribute__((constructor)) init()
|
| /PHP_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/ext/opcache/ |
| H A D | zend_persist.c | 603 if (ce->constructor) { 604 ce->constructor = zend_shared_alloc_get_xlat_entry(ce->constructor); 606 ce->constructor->op_array.refcount++;
|
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 1408 fcc.function_handler = ce_ptr->constructor; 3168 Returns whether this method is the constructor */ 3181 RETURN_BOOL(mptr->common.fn_flags & ZEND_ACC_CTOR && intern->ce->constructor && intern->ce->constructor->common.scope == mptr->common.scope); 3637 Returns the class' constructor if there is one, NULL otherwise */ 3648 if (ce->constructor) { 3649 reflection_method_factory(ce, ce->constructor, NULL, return_value TSRMLS_CC); 4082 /* Basically, the class is instantiable. Though, if there is a constructor 4084 if (!ce->constructor) { 4088 RETURN_BOOL(ce->constructor 4197 zend_function *constructor; local 4296 zend_function *constructor; local [all...] |
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli.c | 1127 EX(function_state).function = pce->constructor; 1128 zend_call_method_with_1_params(&ref, pce, &pce->constructor, "__construct", NULL, arg); 1360 * because the executor's constructor does not set initialize it.
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_object_handlers.c | 1167 if (function_name_strlen == ce->name_length && ce->constructor) { 1169 /* Only change the method to the constructor if the constructor isn't called __construct 1172 if (!memcmp(lc_class_name, lc_function_name, function_name_strlen) && memcmp(ce->constructor->common.function_name, "__", sizeof("__") - 1)) { 1173 fbc = ce->constructor; 1298 zend_function *constructor = zobj->ce->constructor; local 1300 if (constructor) { 1301 if (constructor->op_array.fn_flags & ZEND_ACC_PUBLIC) { 1303 } else if (constructor [all...] |
| H A D | zend_compile.c | 1637 if (!CG(active_class_entry)->constructor) { 1638 CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array); 1641 if (CG(active_class_entry)->constructor) { 1642 zend_error(E_STRICT, "Redefining already defined constructor for class %s", CG(active_class_entry)->name); 1644 CG(active_class_entry)->constructor = (zend_function *) CG(active_op_array); 3053 if (ce->constructor) { 3054 if (ce->parent->constructor && ce->parent->constructor->common.fn_flags & ZEND_ACC_FINAL) { 3056 ce->parent->name, ce->parent->constructor->common.function_name, 3057 ce->name, ce->constructor [all...] |
| /PHP_TRUNK/ext/soap/ |
| H A D | soap.c | 779 SoapParam constructor */ 801 SoapHeader constructor */ 841 SoapFault constructor */ 896 SoapFault constructor */ 939 SoapVar constructor */ 1099 SoapServer constructor */ 1685 /* Call constructor */ 1687 zval c_ret, constructor; local 1690 INIT_ZVAL(constructor); 1692 ZVAL_STRING(&constructor, ZEND_CONSTRUCTOR_FUNC_NAM 1715 zval c_ret, constructor; local [all...] |
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli.c | 1025 constructor for statement object. 1082 constructor for result object. 1283 if (ce->constructor) { 1319 fcc.function_handler = ce->constructor; 1325 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); 1335 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_TRUNK/ext/mysql/ |
| H A D | php_mysql.c | 2169 if (ce->constructor) { 2205 fcc.function_handler = ce->constructor; 2211 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); 2221 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_TRUNK/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); 1826 &spl_ce_RecursiveDirectoryIterator->constructor, "__construct", NULL, &arg, &arg2); 1843 &spl_ce_RecursiveIteratorIterator->constructor, "__construct", NULL, iter); 1868 &spl_ce_RegexIterator->constructor, "__construct", NULL, iteriter, &arg2); 2260 zend_call_method_with_1_params(&ret, ce, &ce->constructor, "__construct", NULL, &arg1); 4484 zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Cannot call constructor twice"); 4525 &spl_ce_SplFileInfo->constructor, "__construct", NULL, &arg1);
|