Lines Matching refs:this
15 $this->pos = strlen($this->data);
17 $this->po = 0;
24 $ret = substr($this->data, $this->pos, $count);
25 $this->pos += strlen($ret);
31 return $this->pos;
36 return $this->pos >= strlen($this->data);
43 if ($offset < $this->data && $offset >= 0) {
44 $this->pos = $offset;
52 $this->pos += $offset;
59 if (strlen($this->data) + $offset >= 0) {
60 $this->pos = strlen($this->data) + $offset;