Home
last modified time | relevance | path

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

/plugin/combo/ComboStrap/
H A DDataType.php74 public static function toIntegerOrDefaultIfNull($targetValue, $default): int argument
76 if ($targetValue === null) {
79 return self::toInteger($targetValue);
87 public static function toInteger($targetValue, string $roundDirection = self::FLOOR): int argument
91 if (is_int($targetValue)) {
92 return $targetValue;
94 if (!is_string($targetValue) && !is_float($targetValue)) {
95 $varExport = var_export($targetValue, true);
101 $float = self::toFloat($targetValue);
119 toIntegerCeil($targetValue) global() argument
[all...]
H A DConditionalLength.php126 $targetValue = $this->numerator * $remValue;
130 $targetValue = $this->numerator;
132 return DataType::toInteger($targetValue);
H A DMetadataFrontmatterStore.php96 $targetValue = $metadata->getValue();
98 $targetValue = null;
108 $targetValueShouldBeStore = !in_array($targetValue, [$defaultValue, null], true);
110 if ($sourceValue !== $targetValue) {
/plugin/s5reloaded/ui/effects_support/
H A Deffects.js990 targetValue: unit=='color' ? parseColor(value) : value,
995 (transform.originalValue == transform.targetValue) ||
998 (isNaN(transform.originalValue) || isNaN(transform.targetValue))
1009 (transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart() +
1011 (transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart() +
1013 (transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart() :
1015 (transform.targetValue - transform.originalValue) * position).toFixed(3) +