Home
last modified time | relevance | path

Searched refs:parent (Results 176 – 200 of 312) sorted by relevance

12345678910>>...13

/PHP-5.3/ext/reflection/tests/
H A Dbug37964.phpt2 Reflection Bug #37964 (Reflection shows private methods of parent class)
/PHP-5.3/Zend/tests/
H A Dbug22725.phpt2 Bug #22725 (A derived class can call a parent's protected method that calls a private method)
H A Dbug27798.phpt25 parent::__construct();
H A Dbug30162.phpt18 parent::__construct();
/PHP-5.3/ext/spl/
H A Dspl_heap.c389 zend_class_entry *parent = class_type; in spl_heap_object_new_ex() local
426 while (parent) { in spl_heap_object_new_ex()
427 if (parent == spl_ce_SplPriorityQueue) { in spl_heap_object_new_ex()
434 if (parent == spl_ce_SplMinHeap) { in spl_heap_object_new_ex()
439 if (parent == spl_ce_SplMaxHeap) { in spl_heap_object_new_ex()
444 if (parent == spl_ce_SplHeap) { in spl_heap_object_new_ex()
448 parent = parent->parent; in spl_heap_object_new_ex()
454 if (!parent) { /* this must never happen */ in spl_heap_object_new_ex()
460 if (intern->fptr_cmp->common.scope == parent) { in spl_heap_object_new_ex()
464 if (intern->fptr_count->common.scope == parent) { in spl_heap_object_new_ex()
H A Dspl_array.c168 zend_class_entry * parent = class_type; in spl_array_object_new_ex() local
212 while (parent) { in spl_array_object_new_ex()
213 if (parent == spl_ce_ArrayIterator || parent == spl_ce_RecursiveArrayIterator) { in spl_array_object_new_ex()
217 } else if (parent == spl_ce_ArrayObject) { in spl_array_object_new_ex()
221 parent = parent->parent; in spl_array_object_new_ex()
224 if (!parent) { /* this must never happen */ in spl_array_object_new_ex()
229 if (intern->fptr_offset_get->common.scope == parent) { in spl_array_object_new_ex()
233 if (intern->fptr_offset_set->common.scope == parent) { in spl_array_object_new_ex()
237 if (intern->fptr_offset_has->common.scope == parent) { in spl_array_object_new_ex()
245 if (intern->fptr_count->common.scope == parent) { in spl_array_object_new_ex()
[all …]
/PHP-5.3/sapi/litespeed/
H A DREADME171 will be killed by the parent process immediately.
182 will be killed by the parent process. This option can help getting rid
188 In Self Managed Mode, LSAPI_PGRP_MAX_IDLE controls how long the parent
190 This option help releasing system resources taken by an idle parent
196 By default a LSAPI application check the existence of its parent process
197 and exits automatically if the parent process died. This is to reduce
201 you want to disable the checking of existence of parent process.
/PHP-5.3/ext/pdo_sqlite/tests/
H A Dbug48773.phpt19 parent::__construct($dsn, $username, $password, $driver_options);
/PHP-5.3/ext/soap/tests/bugs/
H A Dbug28969.phpt15 parent::__construct($wsdl, $options);
H A Dbug29844.phpt19 parent::__construct($wsdl, $options);
H A Dbug38055.phpt18 parent::__construct($wsdl);
H A Dbug46419.phpt14 parent::__construct($wsdl, $options);
H A Dbug42692.phpt16 parent::__construct($wsdl, $options);
H A Dbug34643.phpt20 parent::__construct($wsdl, $options);
H A Dbug38067.phpt17 parent::__construct($wsdl, $opt);
/PHP-5.3/ext/soap/tests/
H A Dtransport001.phpt14 parent::__construct($wsdl, $options);
/PHP-5.3/ext/spl/tests/
H A Dspl_pq_top_error_corrupt.phpt15 return parent::compare($a, $b);
H A Dbug50579.phpt8 parent::__construct(array(
H A Dbug40036.phpt9 parent::__construct($array, ArrayObject::ARRAY_AS_PROPS);
/PHP-5.3/ext/date/tests/
H A DDateTime_extends_basic2.phpt19 parent::__construct($date, $dtz);
/PHP-5.3/ext/mysqli/tests/
H A Dbug33491.phpt16 $result = parent::query($query);
/PHP-5.3/ext/posix/tests/
H A Dposix_getppid_error.phpt10 * Description: Get the parent process id (POSIX.1, 4.1.1)
/PHP-5.3/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c606 mydata->current->parent = c; in _xmlrpc_startElement()
627 if(mydata && mydata->current && mydata->current->parent) { in _xmlrpc_endElement()
628 Q_PushTail(&mydata->current->parent->children, mydata->current); in _xmlrpc_endElement()
630 mydata->current = mydata->current->parent; in _xmlrpc_endElement()
755 xReturn->parent = NULL; in xml_elem_parse_buf()
/PHP-5.3/Zend/
H A Dzend_interfaces.c325 if (class_type->get_iterator || (class_type->parent && class_type->parent->get_iterator)) { in zend_implement_traversable()
502 if (class_type->parent in zend_implement_serializable()
503 && (class_type->parent->serialize || class_type->parent->unserialize) in zend_implement_serializable()
504 && !instanceof_function_ex(class_type->parent, zend_ce_serializable, 1 TSRMLS_CC)) { in zend_implement_serializable()
H A Dzend_compile.c504 opline.op1 = *parent; in fetch_array_dim()
747 int parent; in do_begin_loop() local
753 brk_cont_element->parent = parent; in do_begin_loop()
2422 if (!ce->parent) { in do_inherit_parent_constructor()
2472 ce->parent->name, ce->parent->constructor->common.function_name, in do_inherit_parent_constructor()
2490 lc_parent_class_name = zend_str_tolower_dup(ce->parent->name, ce->parent->name_length); in do_inherit_parent_constructor()
2636 parent->common.scope->name, in do_inherit_method_check()
2681 child->common.prototype = parent->common.prototype ? parent->common.prototype : parent; in do_inherit_method_check()
2852 ce->parent = parent_ce; in zend_do_inheritance()
2916 zend_uint parent_iface_num = ce->parent ? ce->parent->num_interfaces : 0; in zend_do_implement_interface()
[all …]

Completed in 63 milliseconds

12345678910>>...13