Home
last modified time | relevance | path

Searched refs:_buffer (Results 1 – 4 of 4) sorted by relevance

/template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
DCss.php19 private $_buffer = ''; variable in PhpCss\\Ast\\Visitor\\Css
26 $this->_buffer = '';
33 return $this->_buffer;
45 if (!empty($this->_buffer)) {
63 $this->_buffer .= ', ';
77 $this->_buffer .= $universal->namespacePrefix.'|*';
79 $this->_buffer .= '*';
92 $this->_buffer .= $type->namespacePrefix.'|'.$type->elementName;
94 $this->_buffer .= $type->elementName;
106 $this->_buffer .= '#'.$id->id;
[all …]
DXpath.php70 private $_buffer = ''; variable in PhpCss\\Ast\\Visitor\\Xpath
150 $this->_buffer = '';
160 $this->_buffer .= $string;
190 return $this->_buffer;
273 if (!empty($this->_buffer)) {
293 if (!empty($this->_buffer)) {
469 if ($this->_buffer !== '') {
477 if ($this->_buffer !== '') {
487 if ($this->_buffer !== '') {
496 if ($this->_buffer !== '') {
/template/strap/vendor/carica/phpcss/src/PhpCss/
DScanner.php30 private $_buffer = ''; variable in PhpCss\\Scanner
56 $this->_buffer = $string;
70 if ($this->_offset < strlen($this->_buffer)) {
75 $this->_buffer,
89 if (($token = $this->_status->getToken($this->_buffer, $this->_offset)) &&
108 return $scanner->scan($target, $this->_buffer, $this->_offset);
/template/strap/vendor/carica/phpcss/src/PhpCss/Exception/
DInvalidCharacterException.php28 private $_buffer; variable in PhpCss\\Exception\\InvalidCharacterException
38 $this->_buffer = $buffer;
47 $this->_buffer
58 if (preg_match('(.)suS', $this->_buffer, $match, 0, $this->_offset)) {
69 return $this->_buffer;