Home
last modified time | relevance | path

Searched refs:min (Results 1 – 25 of 1381) sorted by relevance

12345678910>>...56

/plugin/diagramsnet/lib/shapes/
DmxArrows.js30 {name: 'dx', dispName: 'Arrowhead Length', type: 'float', min: 0, defVal: 40},
31 {name: 'dy', dispName: 'Arrow Width', type: 'float', min:0, max:1, defVal: 0.6},
32 {name: 'notch', dispName: 'Notch', type: 'float', min:0, defVal: 0},
50 …var dy = h * 0.5 * Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))…
51 var dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
52 …var notch = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'notch', this.notch)))…
116 dy = w * 0.5 * Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))));
117 dx = Math.max(0, Math.min(h, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
121 dy = h * 0.5 * Math.max(0, Math.min(1, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))));
122 dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
[all …]
DmxInfographic.js29 {name:'dy', dispName:'Circle Size', min:0, defVal: 25}
41 var dy = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))));
45 var d = Math.min(dy, w - 2 * inset, h - inset);
67 …var dy = Math.max(0, Math.min(bounds.width, bounds.width, parseFloat(mxUtils.getValue(this.state.s…
72 …this.state.style['dy'] = Math.round(100 * Math.max(0, Math.min(bounds.height, bounds.width, pt.y -…
81 var dy = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))));
83 var d = Math.min(dy, w - 2 * inset, h - inset);
123 {name:'startAngle', dispName:'Start Angle', min:0, max:1, defVal: 0.75},
124 {name:'endAngle', dispName:'End Angle', min:0, max:1, defVal: 0.25},
125 {name:'arcWidth', dispName:'Arc Width', min:0, max:1, defVal: 0.25}
[all …]
DmxBasic.js37 var dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
64 …var dx = Math.max(0, Math.min(bounds.width / 2, bounds.width / 2, parseFloat(mxUtils.getValue(this…
69 …this.state.style['dx'] = Math.round(100 * Math.max(0, Math.min(bounds.height / 2, bounds.width / 2…
98 {name: 'dx', dispName: 'Callout Position', type: 'float', min:0, defVal:30},
99 {name: 'dy', dispName: 'Callout Size', type: 'float', min:0, defVal:15}
113 var dx = Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'dx', this.dx))));
114 var dy = Math.max(0, Math.min(h, parseFloat(mxUtils.getValue(this.style, 'dy', this.dy))));
144 …var dx = Math.max(0, Math.min(bounds.width, parseFloat(mxUtils.getValue(this.state.style, 'dx', th…
145 …var dy = Math.max(0, Math.min(bounds.height, parseFloat(mxUtils.getValue(this.state.style, 'dy', t…
151 …this.state.style['dx'] = Math.round(100 * Math.max(y, Math.min(bounds.width - y, pt.x - bounds.x))…
[all …]
/plugin/html2pdf/html2pdf/html2ps/
Dheight.php28 if (is_null($hc2->min) && is_null($hc2->max)) { return $hc1; };
31 if (is_null($hc1->min) && is_null($hc1->max)) { return $hc2; };
48 var $min; variable in HCConstraint
57 if (!is_null($this->min)) {
58 $applicable_min = $this->applicable_value($this->min, $box);
114 is_null($box->parent->_height_constraint->min) &&
151 $min = null;
153 $min = array($value->getPercentage(), true);
155 $min = array($value->getPoints(), false);
168 $constraint =& new HCConstraint($constant, $min, $max);
[all …]
/plugin/diagramsnet/lib/math/jax/output/HTML-CSS/fonts/TeX/
Dfontdata-extra.js19min: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
/plugin/diagramsnet/lib/math/jax/output/SVG/fonts/TeX/
Dfontdata-extra.js19min: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
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
DMeter.php20 $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 + (($max - $min) / 2);
[all …]
/plugin/cloud/
Dsyntax.php80 $cloud = $this->_getTagCloud($num, $min, $max, $namespaces, $tag);
88 $min = PHP_INT_MAX;
91 $min = min($size, $min);
99 $cloud = $this->_getWordCloud($num, $min, $max);
102 $delta = ($max-$min)/16;
110 if ($size < $min+round($delta)) $class = 'cloud1';
111 elseif ($size < $min+round(2*$delta)) $class = 'cloud2';
112 elseif ($size < $min+round(4*$delta)) $class = 'cloud3';
113 elseif ($size < $min+round(8*$delta)) $class = 'cloud4';
198 $min = $this->getConf('minimum_word_length');
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/
DLength.php12 protected $min; variable in HTMLPurifier_AttrDef_CSS_Length
20 …* @param HTMLPurifier_Length|string $min Minimum length, or null for no bound. String is also acce…
23 public function __construct($min = null, $max = null) argument
25 $this->min = $min !== null ? HTMLPurifier_Length::make($min) : null;
55 if ($this->min) {
56 $c = $length->compareTo($this->min);
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
Dmin.rst1 ``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/Test/Unit/Llk/Rule/
DRepetition.php67 $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/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
DRepetition.php71 * @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/gtime/gtlib/util/
DGTBaseX.php35 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/
Dsyntax.php118 $cloud = $this->_getTagCloud($options['max'], $min, $max, $tag);
121 $cloud = $this->_getNamespaceCloud($options['max'], $min, $max);
124 $cloud = $this->_getWordCloud($options['max'], $min, $max);
128 $delta = ($max-$min)/16;
132 if ($size < $min+round($delta)) $class = 'cloud1';
133 elseif ($size < $min+round(2*$delta)) $class = 'cloud2';
134 elseif ($size < $min+round(4*$delta)) $class = 'cloud3';
135 elseif ($size < $min+round(8*$delta)) $class = 'cloud4';
171 $fsize = 8 + round(($size-$min)/$delta);
180 function _getNamespaceCloud($num, &$min, &$max) { argument
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DExpectedEntryCountControl.php47 * @param int $min
50 public function __construct(int $min, int $max) argument
52 $this->minimum = $min;
85 * @param int $min
88 public function setMinimum(int $min) argument
90 $this->minimum = $min;
107 $min = $request->getChild(0);
109 if (!$min instanceof IntegerType) {
116 $min->getValue(),
/plugin/sequencediagram/bower_components/js-sequence-diagrams/
DMakefile7 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/geophp/vendor/funiq/geophp/src/Geometry/
DMultiGeometry.php127 $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 : null;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Color/
DColorModeConverter.php43 $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);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
DRange.php23 public $min; variable in Google\\Service\\Monitoring\\Range
33 public function setMin($min) argument
35 $this->min = $min;
39 return $this->min;
DGoogleMonitoringV3Range.php23 public $min; variable in Google\\Service\\Monitoring\\GoogleMonitoringV3Range
33 public function setMin($min) argument
35 $this->min = $min;
39 return $this->min;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/
DIntRange.php29 public $min; variable in Google\\Service\\Bigquery\\IntRange
48 public function setMin($min) argument
50 $this->min = $min;
57 return $this->min;
DDoubleRange.php23 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/
DGoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange.php29 public $min; variable in Google\\Service\\RecommendationsAI\\GoogleCloudRecommendationengineV1beta1ProductCatalogItemPriceRange
48 public function setMin($min) argument
50 $this->min = $min;
57 return $this->min;
/plugin/colorswatch/
Dstyle.css20 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/authgooglesheets/vendor/google/apiclient-services/src/PagespeedInsights/
DBucket.php29 public $min; variable in Google\\Service\\PagespeedInsights\\Bucket
49 public function setMin($min) argument
51 $this->min = $min;
58 return $this->min;

12345678910>>...56