Lines Matching refs:x

622 	EditorUi.prototype.createSpinner = function(x, y, size)  argument
624 var autoPosition = (x == null || y == null);
658 x = document.body.clientWidth / 2 - 2;
672 status.style.left = Math.max(0, x) + 'px';
1677 var x0 = Math.floor(bounds.x / scale - graph.view.translate.x);
2446 curr.x += val;
3332 geo.translate(-bounds.x, -bounds.y);
3366 bounds.x /= s;
3371 bounds.x -= graph.view.translate.x;
3464 …files, 0, 0, this.maxImageSize, mxUtils.bind(this, function(data, mimeType, x, y, w, h, img, doneF… argument
3556 …if (file != null && img != null && ((/(\.v(dx|sdx?))($|\?)/i.test(img)) || /(\.vs(x|sx?))($|\?)/i.…
7192 return /(\.v(sd|dx))($|\?)/i.test(filename) || /(\.vs(s|x))($|\?)/i.test(filename);
7789 EditorUi.prototype.insertAsPreText = function(text, x, y) argument
7798 x, y, 1, 1, 'text;html=1;align=left;verticalAlign=top;');
9601 …s.importFiles(evt.dataTransfer.files, 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
9794 var x = pt.x / scale - tr.x;
9807 x = null;
9811 this.importFiles(evt.dataTransfer.files, x, y, this.maxImageSize, null, null, null,
9819 x = 0;
9829 graph.setSelectionCells(this.importXml(data, x, y, true));
9884 graph.setSelectionCells(this.insertTextAt(html, x, y, true,
9911 graph.setSelectionCell(graph.insertVertex(null, null, '', x, y, w * s, h * s,
9916 graph.setSelectionCells(this.insertTextAt(uri, x, y, true));
9921 … graph.setSelectionCells(this.insertTextAt(evt.dataTransfer.getData('text/plain'), x, y, true));
9985 … this.importFiles([item.getAsFile()], 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument
10008 this.importFiles([item.getAsFile()], pt.x, pt.y, this.maxImageSize);
10726 cells = this.insertTextAt(xml, pt.x + dx, pt.y + dx, true);
11065 var x = 0;
11080 x = elt.offsetTop;
11091 hl.style.top = x + 'px';
11186 if (/(\.v(dx|sdx?))($|\?)/i.test(name) || /(\.vs(x|sx?))($|\?)/i.test(name))
12917 var x0 = pt.x;
13217 cell.geometry.x = originX + parseFloat(cell.getAttribute(left));
13357 var elx = (def.x != null) ? def.x : 0;
13437 geo.x = Math.round(graph.snap(geo.x));
15010 var CommentsWindow = function(editorUi, x, y, w, h, saveCallback) argument
15749 this.window = new mxWindow(mxResources.get('comments'), div, x, y, w, h, true, true);
15762 this.window.setLocation = function(x, y) argument
15767 x = Math.max(0, Math.min(x, iw - this.table.clientWidth));
15770 if (this.getX() != x || this.getY() != y)
15778 var x = this.window.getX();
15781 this.window.setLocation(x, y);