Lines Matching refs:position
7 var $position;
18 $this->position = 0;
25 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
26 $this->position += strlen($ret);
32 $left = substr($GLOBALS[$this->varname], 0, $this->position);
33 $right = substr($GLOBALS[$this->varname], $this->position + strlen($data));
35 $this->position += strlen($data);
41 return $this->position;
46 return $this->position >= strlen($GLOBALS[$this->varname]);
53 $this->position = $offset;
62 $this->position += $offset;
71 $this->position = strlen($GLOBALS[$this->varname]) + $offset;