Lines Matching refs:clamp
1273 $hsl[3] = $this->clamp($hsl[3] - $delta, 100);
1282 $hsl[3] = $this->clamp($hsl[3] + $delta, 100);
1291 $hsl[2] = $this->clamp($hsl[2] + $delta, 100);
1300 $hsl[2] = $this->clamp($hsl[2] - $delta, 100);
1319 $color[4] = $this->clamp((isset($color[4]) ? $color[4] : 1) - $delta / 100);
1326 $color[4] = $this->clamp((isset($color[4]) ? $color[4] : 1) + $delta / 100);
1361 $color[4] = $this->clamp($alpha / 100.0);
1587 protected function clamp($v, $max = 1, $min = 0) function in lessc
1609 if ($i == 0) $clamp = 360;
1610 elseif ($i < 3) $clamp = 100;
1611 else $clamp = 1;
1613 $hsl[] = $this->clamp($val, $clamp);