Home
last modified time | relevance | path

Searched refs:sub_value_arr (Results 1 – 2 of 2) sorted by relevance

/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dclass.csstidy.php198 var $sub_value_arr = array(); variable in csstidy
667 $this->sub_value_arr[] = trim($this->sub_value);
673 case '@charset': $this->charset = $this->sub_value_arr[0]; break;
674 … case '@namespace': $this->namespace = implode(' ',$this->sub_value_arr); break;
675 … case '@import': $this->import[] = implode(' ',$this->sub_value_arr); break;
678 $this->sub_value_arr = array();
708 $this->sub_value_arr[] = $this->sub_value;
712 $this->value = implode(' ',$this->sub_value_arr);
738 $this->sub_value_arr = array();
758 $this->sub_value_arr[] = $this->sub_value;
/plugin/pagecss/vendor/csstidy-2.2.1/
H A Dclass.csstidy.php202 public $sub_value_arr = array(); variable in csstidy
773 $this->sub_value_arr[] = trim($this->sub_value);
778 case '@charset': $this->charset = '"'.$this->sub_value_arr[0].'"';
780 case '@namespace': $this->namespace = implode(' ', $this->sub_value_arr);
782 case '@import': $this->import[] = implode(' ', $this->sub_value_arr);
786 $this->sub_value_arr = array();
809 $this->sub_value_arr[] = $this->sub_value;
814 while (count($this->sub_value_arr)) {
815 $sub = array_shift($this->sub_value_arr);
841 $this->sub_value_arr = array();
[all …]