Home
last modified time | relevance | path

Searched refs:parent (Results 51 – 75 of 357) sorted by relevance

12345678910>>...15

/PHP-5.5/ext/spl/internal/
H A Drecursivetreeiterator.inc29 * @param rit_flags flags passed to RecursiveIteratoIterator (parent)
31 * @param mode mode passed to RecursiveIteratoIterator (parent)
35 parent::__construct(new RecursiveCachingIterator($it, $cit_flags), $mode, $rit_flags);
86 return @(string)parent::current();
102 return parent::current();
116 return parent::key();
120 return $this->getPrefix() . parent::key() . $this->getPostfix();
H A Dsplqueue.inc27 protected $_it_mode = parent::IT_MODE_FIFO;
44 if ($mode & parent::IT_MODE_LIFO === parent::IT_MODE_LIFO) {
57 return parent::shift();
67 return parent::push($data);
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_getParentClass_001.phpt12 $parent = $rc->getParentClass();
13 $grandParent = $parent->getParentClass();
14 var_dump($parent, $grandParent);
/PHP-5.5/ext/spl/tests/
H A DarrayObject_getIteratorClass_basic1.phpt15 return parent::rewind();
21 return parent::valid();
27 return parent::current();
33 return parent::next();
39 return parent::key();
H A Diterator_016.phpt19 parent::__construct($it);
24 parent::rewind();
37 if (!parent::valid()) {
H A Dbug33136.phpt13 parent::__construct($this->data);
19 return parent::offsetGet($index);
25 parent::offsetSet($index, $value);
H A Dfixedarray_002.phpt12 return parent::offsetGet($n);
16 return parent::offsetSet($n, $v);
20 return parent::offsetUnset($n);
24 return parent::offsetExists($n);
H A Dheap_011.phpt7 return -parent::compare($a,$b);
19 return -parent::compare($a,$b);
/PHP-5.5/tests/classes/
H A Dconstants_scope_001.phpt23 echo "parent::FATAL = " . parent::FATAL;
38 parent::FATAL = Fatal error
/PHP-5.5/Zend/tests/
H A Dobjects_028.phpt2 Testing 'static::' and 'parent::' in calls
15 parent::bar();
H A Dbug40784.phpt12 parent::__construct();
13 parent::__constrUct();
H A Dbug30451.phpt21 var_dump(parent::method());
24 var_dump(parent::$property);
H A Dbug47801.phpt2 Bug #47801 (__call() accessed via parent:: operator is provided incorrect method name)
18 parent::getFoo();
H A Dbug48899.phpt2 Bug #48899 (is_callable returns true even if method does not exist in parent class)
10 var_dump(is_callable(array($this, 'parent::testIsCallable')));
H A Dobjects_030.phpt2 Trying to access undeclared parent property
14 parent::$f = 1;
H A Dbug37138.phpt2 Bug #37138 (__autoload tries to load callback'ed self and parent)
11 public static function g () {call_user_func (array ('parent', 'e'));}
H A Dbug52051.phpt11 function CC() { parent::bb(); }
20 function C() { parent::B(); }
H A Dbug30828.phpt33 parent::__construct();
37 parent::foo();
41 parent::bar();
/PHP-5.5/ext/soap/
H A Dphp_encoding.c651 xmlAddChild(parent, ret); in to_xml_user()
876 xmlAddChild(parent, ret); in to_xml_string()
964 xmlAddChild(parent, ret); in to_xml_base64()
999 xmlAddChild(parent, ret); in to_xml_hexbin()
1108 xmlAddChild(parent, ret); in to_xml_long()
1141 xmlAddChild(parent, ret); in to_xml_double()
3265 ret->parent = parent; in to_xml_any()
3266 ret->doc = parent->doc; in to_xml_any()
3269 if (parent->last) { in to_xml_any()
3274 parent->last = ret; in to_xml_any()
[all …]
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fork.phpt26 $res = mysqli_query($link, "SELECT 'dumped by the parent' AS message");
39 /* parent */
71 sender ENUM('child', 'parent') NOT NULL,
98 /* send row to parent */
106 /* let the parent reply... */
131 /* parent */
181 printf("[015] Child indicates different results than parent.\n");
242 string(20) "dumped by the parent"
246 parent conti
248 parent conti
[all …]
/PHP-5.5/Zend/tests/traits/
H A Dflattening002.phpt2 parent:: works like in a method defined without traits.
15 parent::sayHello();
/PHP-5.5/ext/session/tests/
H A Dsession_set_save_handler_class_003.phpt25 return parent::open($path, $name);
29 return parent::read($key);
36 return parent::write($id, $data);
H A Dsession_set_save_handler_class_013.phpt26 return parent::open($path, $name);
31 return parent::read($key);
34 return parent::close(false);
H A Dsession_set_save_handler_class_005.phpt24 // don't call parent
29 // should error because parent::open hasn't been called
30 return parent::read($id);
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug55323.phpt14 parent::__construct($wsdl, $options);
24 <parent href="#ref1"/>
43 ["parent"]=>

Completed in 57 milliseconds

12345678910>>...15