Lines Matching refs:consumed
70 public $consumed = ''; variable in SimplePie_Decode_HTML_Entities
102 $this->consumed = '';
116 $this->consumed .= $this->data[$this->position];
134 $this->consumed .= $data;
149 $this->consumed = substr($this->consumed, 0, -1);
205 $consumed_length = strlen($this->consumed);
582 $consumed = substr($this->consumed, 1);
583 if (isset($entities[$consumed])) {
584 $match = $consumed;
589 …ubstr_replace($this->data, $entities[$match], $this->position - strlen($consumed) - 1, strlen($mat…
590 $this->position += strlen($entities[$match]) - strlen($consumed) - 1;