Lines Matching refs:buffer
2063 $parser->buffer = (string)$strValue;
2566 public $buffer; variable in lessc_parser
2594 public function parse($buffer) { argument
2599 $this->buffer = $this->writeComments ? $buffer : $this->removeComments($buffer);
2614 if ($this->count != strlen($this->buffer))
2661 if (empty($this->buffer)) return false;
2887 $whiteBefore = isset($this->buffer[$this->count - 1]) &&
2888 ctype_space($this->buffer[$this->count - 1]);
2905 $whiteAfter = isset($this->buffer[$this->count - 1]) &&
2906 ctype_space($this->buffer[$this->count - 1]);
2956 if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "(") {
2981 if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] == "-") {
3247 if (isset($this->buffer[$this->count])) {
3248 $char = $this->buffer[$this->count];
3406 if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] != "[") {
3500 if (isset($this->buffer[$this->count]) && $this->buffer[$this->count] == "@") {
3623 } elseif ($this->count == strlen($this->buffer) || $this->buffer[$this->count] == '}') {
3693 if (!isset($what[1]) && isset($this->buffer[$this->count])) {
3694 if ($this->buffer[$this->count] == $what) {
3757 if (preg_match($r, $this->buffer, $out, 0, $this->count)) {
3769 while (preg_match(self::$whitePattern, $this->buffer, $m, 0, $this->count)) {
3788 $result = preg_match($r, $this->buffer, $out, 0, $from);
3806 substr_count(substr($this->buffer, 0, $count), "\n");