Lines Matching refs:x

35 		function __get($x) { return [0]; }
36 function __set($x, $y) {}
46 function &__get($x) { return $this->bar; }
55 function offsetGet($x) { return [0]; }
56 function offsetSet($x, $y) {}
57 function offsetExists($x) { return true; }
58 function offsetUnset($x) {}
68 function &offsetGet($x) { return $this->foo; }
69 function offsetSet($x, $y) {}
70 function offsetExists($x) { return true; }
71 function offsetUnset($x) {}
87 function __get($x) { return new stdClass; }
88 function __set($x, $y) {}
96 function &__get($x) { return $this->bar; }
110 function __get($x) { return new stdClass; }
111 function __set($x, $y) {}
119 function &__get($x) { return $this->bar; }
126 function offsetGet($x) { return [new stdClass]; }
127 function offsetSet($x, $y) {}
128 function offsetExists($x) { return true; }
129 function offsetUnset($x) {}
136 function offsetGet($x) { return [new stdClass]; }
137 function offsetSet($x, $y) {}
138 function offsetExists($x) { return true; }
139 function offsetUnset($x) {}
153 function __get($x) { return new stdClass; }
154 function __set($x, $y) {}
161 function offsetGet($x) { return [new stdClass]; }
162 function offsetSet($x, $y) {}
163 function offsetExists($x) { return true; }
164 function offsetUnset($x) {}
178 function __get($x) { return new stdClass; }
179 function __set($x, $y) {}
186 function offsetGet($x) { return [new stdClass]; }
187 function offsetSet($x, $y) {}
188 function offsetExists($x) { return true; }
189 function offsetUnset($x) {}
217 function __get($x) {}
218 function __set($x, $y) { throw new Exception; }
225 function offsetGet($x) {}
226 function offsetSet($x, $y) { throw new Exception; }
227 function offsetExists($x) { return true; }
228 function offsetUnset($x) {}
263 function __toString() { $x = "Z"; return ++$x; }