Lines Matching refs:this
17 return $this->position >= strlen($this->data);
21 $this->position = 0;
22 $this->data = file_get_contents(__DIR__.'/bug50845.jpg');
29 if ($offset < strlen($this->data) && $offset >= 0) {
30 $this->position = $offset;
38 $this->position += $offset;
45 if (strlen($this->data) + $offset >= 0) {
46 $this->position = strlen($this->data) + $offset;
58 $ret = substr($this->data, $this->position, $count);
59 $this->position += strlen($ret);
64 return $this->position;