Lines Matching refs:fixed

1245 		var fixed = mxUtils.getValue(this.style, 'fixedSize', '0') != '0';
1247 …var dx = (fixed) ? Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'size', this.fi…
1271 var fixed = mxUtils.getValue(this.style, 'fixedSize', '0') != '0';
1273 …var dx = (fixed) ? Math.max(0, Math.min(w * 0.5, parseFloat(mxUtils.getValue(this.style, 'size', t…
1735 var fixed = mxUtils.getValue(this.style, 'fixedSize', '0') != '0';
1736 …var s = (fixed) ? Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'size', this.fix…
1760 var fixed = mxUtils.getValue(this.style, 'fixedSize', '0') != '0';
1761 …var s = (fixed) ? Math.max(0, Math.min(w * 0.5, parseFloat(mxUtils.getValue(this.style, 'size', th…
2340 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2341 var size = (fixed) ? ParallelogramShape.prototype.fixedSize : ParallelogramShape.prototype.size;
2348 if (fixed)
2367 var dy = (fixed) ? Math.max(0, Math.min(h, size)) : h * Math.max(0, Math.min(1, size));
2373 var dx = (fixed) ? Math.max(0, Math.min(w * 0.5, size)) : w * Math.max(0, Math.min(1, size));
2403 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2404 var size = (fixed) ? TrapezoidShape.prototype.fixedSize : TrapezoidShape.prototype.size;
2411 if (fixed)
2428 var dx = (fixed) ? Math.max(0, Math.min(w * 0.5, size)) : w * Math.max(0, Math.min(1, size));
2434 var dx = (fixed) ? Math.max(0, Math.min(w, size)) : w * Math.max(0, Math.min(1, size));
2440 var dy = (fixed) ? Math.max(0, Math.min(h, size)) : h * Math.max(0, Math.min(1, size));
2446 var dy = (fixed) ? Math.max(0, Math.min(h, size)) : h * Math.max(0, Math.min(1, size));
2476 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2477 var size = (fixed) ? StepShape.prototype.fixedSize : StepShape.prototype.size;
2484 if (fixed)
2504 var dx = (fixed) ? Math.max(0, Math.min(w, size)) : w * Math.max(0, Math.min(1, size));
2511 var dx = (fixed) ? Math.max(0, Math.min(w, size)) : w * Math.max(0, Math.min(1, size));
2518 var dy = (fixed) ? Math.max(0, Math.min(h, size)) : h * Math.max(0, Math.min(1, size));
2525 var dy = (fixed) ? Math.max(0, Math.min(h, size)) : h * Math.max(0, Math.min(1, size));
2553 var fixed = mxUtils.getValue(vertex.style, 'fixedSize', '0') != '0';
2554 var size = (fixed) ? HexagonShape.prototype.fixedSize : HexagonShape.prototype.size;
2561 if (fixed)
2583 var dy = (fixed) ? Math.max(0, Math.min(h, size)) : h * Math.max(0, Math.min(1, size));
2590 var dx = (fixed) ? Math.max(0, Math.min(w, size)) : w * Math.max(0, Math.min(1, size));
3124 var fixed = mxUtils.getValue(this.style, 'fixedSize', '0') != '0';
3125 …var s = (fixed) ? Math.max(0, Math.min(w, parseFloat(mxUtils.getValue(this.style, 'size', this.fix…
5468 …var fixed = (fixedDefaultValue != null) ? mxUtils.getValue(this.state.style, 'fixedSize', '0') != …
5469 …var size = Math.max(0, parseFloat(mxUtils.getValue(this.state.style, 'size', (fixed) ? fixedDefaul…
5471 …return new mxPoint(bounds.x + Math.min(bounds.width * 0.75 * max, size * ((fixed) ? 0.75 : bounds.…
5474 …var fixed = (fixedDefaultValue != null) ? mxUtils.getValue(this.state.style, 'fixedSize', '0') != …
5475 …var size = (fixed) ? (pt.x - bounds.x) : Math.max(0, Math.min(max, (pt.x - bounds.x) / bounds.widt…
5497 …var fixed = (fixedDefaultValue != null) ? mxUtils.getValue(this.state.style, 'fixedSize', '0') != …
5498 …var size = parseFloat(mxUtils.getValue(this.state.style, 'size', (fixed) ? fixedDefaultValue : def…
5500 …return new mxPoint(bounds.x + Math.max(0, Math.min(bounds.width * 0.5, size * ((fixed) ? 1 : bound…
5503 …var fixed = (fixedDefaultValue != null) ? mxUtils.getValue(this.state.style, 'fixedSize', '0') != …
5504 …var size = (fixed) ? (pt.x - bounds.x) : Math.max(0, Math.min(max, (pt.x - bounds.x) / bounds.widt…
5893 var fixed = mxUtils.getValue(this.state.style, 'fixedSize', '0') != '0';
5896 …return (fixed) ? new mxPoint(bounds.x + size, bounds.y + bounds.height / 4) : new mxPoint(bounds.x…
5899 var fixed = mxUtils.getValue(this.state.style, 'fixedSize', '0') != '0';
5900 …var size = (fixed) ? Math.max(0, Math.min(bounds.width * 0.5, (pt.x - bounds.x))) : Math.max(0, Ma…
5977 var fixed = mxUtils.getValue(this.state.style, 'fixedSize', '0') != '0';
5978 …var size = parseFloat(mxUtils.getValue(this.state.style, 'size', (fixed) ? DataStorageShape.protot…
5980 …return new mxPoint(bounds.x + bounds.width - size * ((fixed) ? 1 : bounds.width), bounds.getCenter…
5983 var fixed = mxUtils.getValue(this.state.style, 'fixedSize', '0') != '0';
5984 …var size = (fixed) ? Math.max(0, Math.min(bounds.width, (bounds.x + bounds.width - pt.x))) : Math.…