Lines Matching refs:clamp
1187 $hsl[3] = $this->clamp($hsl[3] - $delta, 100);
1195 $hsl[3] = $this->clamp($hsl[3] + $delta, 100);
1203 $hsl[2] = $this->clamp($hsl[2] + $delta, 100);
1211 $hsl[2] = $this->clamp($hsl[2] - $delta, 100);
1228 $color[4] = $this->clamp((isset($color[4]) ? $color[4] : 1) - $delta/100);
1234 $color[4] = $this->clamp((isset($color[4]) ? $color[4] : 1) + $delta/100);
1264 $color[4] = $this->clamp($alpha / 100.0);
1479 protected function clamp($v, $max = 1, $min = 0) { function in lessc
1499 if ($i == 0) $clamp = 360;
1500 elseif ($i < 3) $clamp = 100;
1501 else $clamp = 1;
1503 $hsl[] = $this->clamp($val, $clamp);