Lines Matching refs:w

233 mxShape.prototype.getConstraints = function(style, w, h)  argument
1371 Graph.createSvgImage = function(w, h, data, coordWidth, coordHeight) argument
1374 …/www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="' + w + 'px" height="' + h…
1378 …xImage('data:image/svg+xml;base64,' + ((window.btoa) ? btoa(tmp) : Base64.encode(tmp, true)), w, h)
1741 var w = svgs[0].getAttribute('width');
1744 if (w != null && w.charAt(w.length - 1) != '%')
1746 w = parseFloat(w);
1750 w = NaN;
1764 if (vb != null && !isNaN(w) && !isNaN(h))
1770 fx = parseFloat(tokens[2]) / w;
5807 Graph.prototype.createTable = function(rowCount, colCount, w, h, title, startSize, tableStyle, rowS… argument
5809 w = (w != null) ? w : 60;
5820 0, 0, colCount * w, rowCount * h + ((title != null) ? startSize : 0), tableStyle),
5821 this.createParent(this.createVertex(null, null, '', 0, 0, colCount * w, h, rowStyle),
5822 this.createVertex(null, null, '', 0, 0, w, h, cellStyle),
5823 colCount, w, 0), rowCount, 0, h);
5860 Graph.prototype.createCrossFunctionalSwimlane = function(rowCount, colCount, w, h, title, tableStyl… argument
5862 w = (w != null) ? w : 120;
5878 colCount * w, rowCount * h, tableStyle);
5884 var row = this.createVertex(null, null, '', 0, t, colCount * w + t, h, rowStyle);
5886 '', t, 0, w, h, firstCellStyle), colCount, w, 0));
5893 this.createVertex(null, null, '', t, 0, w, h, cellStyle),
5894 colCount, w, 0), rowCount - 1, 0, h);
7208 var w = shape.getAttribute('w');
7211 w = (w == null) ? 80 : parseInt(w, 10);
7214 postStencilLoad(packageName, stencilName, name, w, h);
8206 var w = bounds.width / scale;
8211 var tmp = w;
8212 w = h;
8216 constraints = terminal.shape.getConstraints(terminal.style, w, h);
9409 Graph.prototype.insertImage = function(newValue, w, h) argument
9436 newImages[i].setAttribute('width', w);
9764 var w = Math.max(1, Math.ceil(bounds.width * s) + 2 * border) +
9770 root.setAttribute('width', w + 'px');
9772 root.setAttribute('viewBox', ((crisp) ? '-0.5 -0.5' : '0 0') + ' ' + w + ' ' + h);
9793 svgCanvas.getAlternateText = function(fo, x, y, w, h, str, argument
9812 var exp = Math.ceil(2 * w / this.state.fontSize);
13243 var w = ch[0].bounds.width / 2;
13246 ch[0].bounds.x = this.state.x - w + inset;