Lines Matching refs:position
8 var $position;
19 $this->position = 0;
26 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
27 $this->position += strlen($ret);
33 $left = substr($GLOBALS[$this->varname], 0, $this->position);
34 $right = substr($GLOBALS[$this->varname], $this->position + strlen($data));
36 $this->position += strlen($data);
42 return $this->position;
47 return $this->position >= strlen($GLOBALS[$this->varname]);
54 $this->position = $offset;
63 $this->position += $offset;
72 $this->position = strlen($GLOBALS[$this->varname]) + $offset;