Lines Matching +refs:round +refs:b

630 			width: Math.round(size / 3), // The line thickness
631 radius: Math.round(size / 2), // The radius of the inner circle
1348 result.push((zeros) ? '0' : Math.round(Math.random() * 9));
1352 result.push(String.fromCharCode(65 + Math.round(Math.random() * 25)));
1356 result.push(String.fromCharCode(97 + Math.round(Math.random() * 25)));
2862 return Math.round(value);
6332 atts = ' width="' + Math.round(bounds.width) + '" height="' + Math.round(bounds.height) + '"';
6360 size = '&w=' + Math.round(2 * bounds.width) +
6361 '&h=' + Math.round(2 * bounds.height);
7662 function encode6bit(b) argument
7664 if (b < 10)
7666 return String.fromCharCode(48 + b);
7669 b -= 10;
7671 if (b < 26)
7673 return String.fromCharCode(65 + b);
7676 b -= 26;
7678 if (b < 26)
7680 return String.fromCharCode(97 + b);
7683 b -= 26;
7685 if (b == 0)
7690 if (b == 1)
7908 var w = Math.round(img.width * s);
7909 var h = Math.round(img.height * s);
11072 var b = document.body;
11075 w = (b.clientWidth || d.clientWidth) - 3;
11076 h = Math.max(b.clientHeight || 0, d.clientHeight) - 3;
13437 geo.x = Math.round(graph.snap(geo.x));
13438 geo.y = Math.round(graph.snap(geo.y));
13442 geo.width = Math.round(graph.snap(geo.width));
13447 geo.height = Math.round(graph.snap(geo.height));
13891 ExportDialog.exportFile = function(editorUi, name, format, bg, s, b, dpi, grid) argument
13903 editorUi.saveData(name, 'svg', mxUtils.getXml(graph.getSvg(bg, s, b)), 'image/svg+xml');
13921 false, false, b, true, false, null, grid, dpi);
13926 false, false, b, true, false, 'jpeg', grid);
13950 '&border=' + b + '&xml=' + encodeURIComponent(data));