Home
last modified time | relevance | path

Searched refs:stepSize (Results 1 – 3 of 3) sorted by relevance

/plugin/combo/vendor/dragonmantank/cron-expression/src/Cron/
H A DAbstractField.php79 $stepSize = isset($parts[1]) ? (int) $parts[1] : 0;
81 if ($stepSize === 0) {
86 return (int) $dateValue % $stepSize == 0;
97 if ($dateValue > $offset && 0 === $stepSize) {
101 for ($i = $offset; $i <= $to; $i+= $stepSize) {
125 $stepSize = 1;
129 $stepSize = isset($range[1]) ? $range[1] : 0;
136 for ($i = $offset; $i <= $to; $i += $stepSize) {
/plugin/diagramsnet/lib/js/grapheditor/
H A DEditorUi.js5111 function nudge(keyCode, stepSize, resize) argument
5115 stepSize = (stepSize != null) ? stepSize : 1;
5137 geo.width = Math.max(0, geo.width - stepSize);
5141 geo.height = Math.max(0, geo.height - stepSize);
5145 geo.width += stepSize;
5149 geo.height += stepSize;
5208 dx = -stepSize;
5212 dy = -stepSize;
5216 dx = stepSize;
5220 dy = stepSize;
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js22546 var stepSize = getStepSize(RANGE, NUM_STEPS * 2);
22552 this._zoom(delta, position, stepSize);
22630 var stepSize = getStepSize(RANGE, NUM_STEPS);
22632 this._zoom(delta, position, stepSize);
22643 ZoomScroll.prototype._zoom = function(delta, position, stepSize) { argument
22651 var newLinearZoomLevel = Math.round(currentLinearZoomLevel / stepSize) * stepSize;
22654 newLinearZoomLevel += stepSize * direction;