/plugin/diagramsnet/lib/shapes/ |
H A D | mxArrows.js | 30 {name: 'dx', dispName: 'Arrowhead Length', type: 'float', min: 0, defVal: 40}, 32 {name: 'notch', dispName: 'Notch', type: 'float', min:0, defVal: 0}, 363 {name: 'notch', dispName: 'Notch', type: 'float', min:0, defVal:0}, 498 {name: 'notch', dispName: 'Notch', type: 'float', min:0, defVal:0} 648 {name: 'notch', dispName: 'Notch', type: 'float', min:0, defVal:0} 802 {name: 'dy', dispName: 'Arrow Width', type: 'float', min:0, defVal:10}, 943 {name: 'notch', dispName: 'Notch', type: 'float', min:0, defVal: 0}, 1184 …var dx = Math.max(0, Math.min(Math.min(bounds.width, bounds.height) - arrowHead, parseFloat(mxUtil… 1198 …var arrowHead = Math.max(0, Math.min(Math.min(bounds.height, bounds.width) - dx, parseFloat(mxUtil… 2034 {name: 'notch', dispName: 'Notch', type: 'float', min:0, defVal: 0}, [all …]
|
H A D | mxInfographic.js | 45 var d = Math.min(dy, w - 2 * inset, h - inset); 883 dx = Math.min(w / 2 - 2 * dy, dx); 885 notch = Math.min(dx, notch); 977 dx = Math.min(w / 2 - 2 * dy, dx); 978 notch = Math.min(dx, notch); 1619 dx = Math.min(w - 2 * dy, dx); 1623 notch = Math.min(dx, notch); 1732 dx = Math.min(w - 2 * dy, dx); 1734 notch = Math.min(dx, notch); 2504 var x2 = Math.min(dx + dy * 0.35, w); [all …]
|
H A D | mxBasic.js | 224 r = Math.min((h - dy) / 2, w / 2, r); 226 dx = Math.min(w - r - dy * 0.5, dx); 281 r = Math.min((h - dy) / 2, w / 2, r); 283 dx = Math.min(w - r - dy * 0.5, dx); 446 dx = Math.min(w * 0.5, h * 0.5, dx); 788 var r = Math.min(h, w) * 0.5; 1183 dx = Math.min(w * 0.5, h * 0.5, dx); 1272 dx = Math.min(w * 0.5, h * 0.5, dx); 1357 dx = Math.min(w * 0.5, h * 0.5, dx); 1935 dx = Math.min(w, h, dx); [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
H A D | height.php | 48 var $min; variable in HCConstraint 57 if (!is_null($this->min)) { 114 is_null($box->parent->_height_constraint->min) && 151 $min = null; 153 $min = array($value->getPercentage(), true); 155 $min = array($value->getPoints(), false); 178 function HCConstraint($constant, $min, $max) { argument 180 $this->min = $min; 185 if (is_null($this->min)) { 216 if (is_null($this->min)) { [all …]
|
/plugin/diagramsnet/lib/math/jax/output/SVG/fonts/TeX/ |
H A D | fontdata-extra.js | 19 …min:1,left:[8592,h],rep:j,right:[8739,f,0,-0.05,0.9]}},8613:{dir:g,HW:[],stretch:{min:0.6,bot:[886… property in e.10593.stretch
|
/plugin/diagramsnet/lib/math/jax/output/HTML-CSS/fonts/TeX/ |
H A D | fontdata-extra.js | 19 …min:1,left:[8592,g],rep:j,right:[8739,e,0,-0.05,0.9]}},8613:{dir:f,HW:[],stretch:{min:0.6,bot:[886… property in d.10591.stretch
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/ |
H A D | Meter.php | 20 $min = 0; 22 $min = $attr['MIN']; 25 if ($max < $min) { 26 $max = $min; 32 if ($value < $min) { 33 $value = $min; 39 $low = $min; 43 if ($low < $min) { 44 $low = $min; 60 $optimum = $min 304 makeSVG($type, $value, $max, $min, $optimum, $low, $high) global() argument [all...] |
/plugin/cloud/ |
H A D | syntax.php | 88 $min = PHP_INT_MAX; 91 $min = min($size, $min); 99 $cloud = $this->_getWordCloud($num, $min, $max); 102 $delta = ($max-$min)/16; 198 $min = $this->getConf('minimum_word_length'); 200 if (iconv_strlen($key) < $min) 229 function _getWordCloud($num, &$min, &$max) { argument 254 return $this->_sortCloud($cloud, $num, $min, $max); 280 return $this->_sortCloud($cloud, $num, $min, $max); 286 function _sortCloud($cloud, $num, &$min, &$max) { argument [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/ |
H A D | min.rst | 1 ``min`` 5 The ``min`` function was added in Twig 1.15. 7 ``min`` returns the lowest value of a sequence or a set of values: 11 {{ min(1, 3, 2) }} 12 {{ min([1, 3, 2]) }} 14 When called with a mapping, min ignores keys and only compares values: 18 {{ min({2: "e", 3: "a", 1: "b", 5: "d", 4: "c"}) }}
|
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/ |
H A D | Repetition.php | 71 * @param int $min Minimum bound. 76 public function __construct($name, $min, $max, $children, $nodeId) argument 80 $min = max(0, (int) $min); 83 if (-1 !== $max && $min > $max) { 87 [$min, $max] 91 $this->_min = $min;
|
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/Rule/ |
H A D | Repetition.php | 67 $min = 7, 72 ->when($result = new SUT($name, $min, $max, $children, $id)) 77 ->isEqualTo($min) 93 $min = '-7', 98 ->when($result = new SUT($name, $min, $max, $children, $id)) 113 $min = 2, 118 ->exception(function () use ($name, $min, $max, $children, $id) { 119 new SUT($name, $min, $max, $children, $id); 130 $min = 2, 135 ->when($result = new SUT($name, $min, $max, $children, $id))
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/ |
H A D | ExpectedEntryCountControl.php | 47 * @param int $min argument 50 public function __construct(int $min, int $max) 52 $this->minimum = $min; 85 * @param int $min argument 88 public function setMinimum(int $min) 90 $this->minimum = $min; 107 $min = $request->getChild(0); 109 if (!$min instanceof IntegerType) { 116 $min->getValue(),
|
/plugin/gtime/gtlib/util/ |
H A D | GTBaseX.php | 35 private $min; variable in GTBaseX 72 $this->min = -1; 81 for ($i = 0; $i < ($this->max - $this->min) + 1; $i++) { 94 for ($i = 0; $i < ($this->max - $this->min) + 1; $i++) { 103 if ($pad >= $this->min && $pad <= $this->max && $this->values[$pad - $this->min] != -1) { 161 if ($c >= $this->min && $c <= $this->max && $this->values[$c - $this->min] != -1) { 242 if ($next < $this->min || $next > $this->max) { 246 $next = $this->values[$next - $this->min]; 281 if ($this->min == -1 || $this->min > $c) { 282 $this->min = $c; [all …]
|
/plugin/cumulus/ |
H A D | syntax.php | 128 $delta = ($max-$min)/16; 132 if ($size < $min+round($delta)) $class = 'cloud1'; 171 $fsize = 8 + round(($size-$min)/$delta); 180 function _getNamespaceCloud($num, &$min, &$max) { argument 191 return $this->_sortCloud($cloud, $num, $min, $max); 198 function _getWordCloud($num, &$min, &$max) { argument 230 return $this->_sortCloud($cloud, $num, $min, $max); 255 function _getTagCloud($num, &$min, &$max, &$tag) { argument 257 return $this->_sortCloud($cloud, $num, $min, $max); 264 function _sortCloud($cloud, $num, &$min, &$max) { argument [all …]
|
/plugin/sequencediagram/bower_components/js-sequence-diagrams/ |
H A D | Makefile | 7 js: dist/sequence-diagram-min.js dist/sequence-diagram-raphael-min.js dist/sequence-diagram-snap-mi… 8 css: dist/sequence-diagram-min.css font 45 test: dependencies dist/sequence-diagram-min.js 51 -d test/*-mock.js $(BOWER_COMPONENTS)/underscore/underscore-min.js 57 -d test/*-mock.js $(BOWER_COMPONENTS)/lodash/dist/lodash.min.js 61 -c dist/sequence-diagram-min.js \ 63 -d test/*-mock.js $(BOWER_COMPONENTS)/underscore/underscore-min.js 67 -c dist/sequence-diagram-min.js \ 69 -d test/*-mock.js $(BOWER_COMPONENTS)/lodash/dist/lodash.min.js 104 dist/sequence-diagram-min.css: dist/sequence-diagram.css [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/ |
H A D | IntRange.php | 29 public $min; variable in Google\\Service\\Bigquery\\IntRange 48 public function setMin($min) argument 50 $this->min = $min; 57 return $this->min;
|
H A D | DoubleRange.php | 23 public $min; variable in Google\\Service\\Bigquery\\DoubleRange 33 public function setMin($min) argument 35 $this->min = $min; 39 return $this->min;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RecommendationsAI/ |
H A D | GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.php | 29 public $min; variable in Google\\Service\\RecommendationsAI\\GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange 48 public function setMin($min) argument 50 $this->min = $min; 57 return $this->min;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/ |
H A D | Range.php | 23 public $min; variable in Google\\Service\\Monitoring\\Range 33 public function setMin($min) argument 35 $this->min = $min; 39 return $this->min;
|
H A D | GoogleMonitoringV3Range.php | 23 public $min; variable in Google\\Service\\Monitoring\\GoogleMonitoringV3Range 33 public function setMin($min) argument 35 $this->min = $min; 39 return $this->min;
|
/plugin/colorswatch/ |
H A D | style.css | 20 min-height: calc(var(--tiny-height) * 1rem); 21 min-width: calc(var(--tiny-width) * 1rem); 29 min-height: calc(var(--small-height) * 1rem); 30 min-width: calc(var(--small-width) * 1rem); 38 min-height: calc(var(--middle-height) * 1rem); 39 min-width: calc(var(--middle-width) * 1rem); 47 min-height: calc(var(--large-height) * 1rem); 48 min-width: calc(var(--large-width) * 1rem);
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Color/ |
H A D | ColorModeConverter.php | 43 $min = min($cyan, $magenta, $yellow); 45 if ($min == 1) { 56 $K = $min; 95 $min = min($r, $g, $b); 98 $diff = $max - $min; 99 $l = ($max + $min) / 2; 107 $s = $diff / ($max + $min); 109 $s = $diff / (2 - $max - $min); [all...] |
/plugin/geophp/vendor/funiq/geophp/src/Geometry/ |
H A D | MultiGeometry.php | 127 $min = PHP_INT_MAX; 130 if ($componentMin < $min) { 131 $min = $componentMin; 134 return $min < PHP_INT_MAX ? $min : null; 180 $min = PHP_INT_MAX; 183 if ($componentMin < $min) { 184 $min = $componentMin; 187 return $min < PHP_INT_MAX ? $min [all...] |
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PagespeedInsights/ |
H A D | Bucket.php | 29 public $min; variable in Google\\Service\\PagespeedInsights\\Bucket 49 public function setMin($min) argument 51 $this->min = $min; 58 return $this->min;
|
/plugin/photogallery/phpThumb/ |
H A D | phpthumb.unsharp.php | 52 $amount = min($amount, 500) * 0.016; 53 $radius = abs(round(min(50, $radius) * 2)); // Only integers make sense. 54 $threshold = min(255, $threshold); 113 …$rNew = ((abs($rOrig - $rBlur) >= $threshold) ? max(0, min(255, ($amount * ($rOrig - $rBlur)) + $r… 114 …$gNew = ((abs($gOrig - $gBlur) >= $threshold) ? max(0, min(255, ($amount * ($gOrig - $gBlur)) + $g… 115 …$bNew = ((abs($bOrig - $bBlur) >= $threshold) ? max(0, min(255, ($amount * ($bOrig - $bBlur)) + $b… 137 $rNew = min(255, max(0, ($amount * ($rOrig - $rBlur)) + $rOrig)); 138 $gNew = min(255, max(0, ($amount * ($gOrig - $gBlur)) + $gOrig)); 139 $bNew = min(255, max(0, ($amount * ($bOrig - $bBlur)) + $bOrig));
|