Lines Matching refs:fname
145 * @param string $fname LESS file
151 public function compileFile(string $fname, ?string $outFname = null) argument
153 if (!is_readable($fname)) {
154 throw new Exception('load error: failed to find ' . $fname);
157 $pi = pathinfo($fname);
164 $this->addParsedFile($fname);
166 $out = $this->compile(file_get_contents($fname), $fname);
1262 $fname = $func[1];
1266 if ($fname == 'hsl' || $fname == 'hsla') {
1283 } elseif ($fname == 'rgb' || $fname == 'rgba') {
1484 $fname = sprintf('op_%s_%s', $ltype, $rtype);
1485 if (is_callable([$this, $fname])) {
1486 $out = $this->$fname($op, $left, $right);