Lines Matching refs:r

11 	function paintTableBackground(state, c, x, y, w, h, r)  argument
55 if (r > 0 && i == cols.length - 1)
57 c.lineTo(x + geo.x + geo.width - r, y);
58 c.quadTo(x + geo.x + geo.width, y, x + geo.x + geo.width, y + r);
59 c.lineTo(x + geo.x + geo.width, y + h - r);
60 c.quadTo(x + geo.x + geo.width, y + h, x + geo.x + geo.width - r, y + h);
89 if (r > 0 && i == rows.length - 1)
91 c.lineTo(x + w, b - r);
92 c.quadTo(x + w, b, x + w - r, b);
93 c.lineTo(x + r, b);
94 c.quadTo(x, b, x, b - r);
1547 var r = 0;
1551 r = Math.min(w / 2, Math.min(h / 2, mxUtils.getValue(this.style,
1558 r = Math.min(w * f, h * f);
1561 c.moveTo(x + r, y);
1562 c.lineTo(x + w - r, y);
1563 c.quadTo(x + w, y, x + w, y + r);
1564 c.lineTo(x + w, y + h - r);
1565 c.quadTo(x + w, y + h, x + w - r, y + h);
1566 c.lineTo(x + r, y + h);
1567 c.quadTo(x, y + h, x, y + h - r);
1568 c.lineTo(x, y + r);
1569 c.quadTo(x, y, x + r, y);
1612 var r = new mxRectangle(rect.x, rect.y, w, h);
1623 r.x += Math.round(inset);
1624 r.width -= Math.round(2 * inset);
1626 return r;
3504 var r = l + size;
3509 c.lineTo(r, 0);
3510 c.lineTo(r, t);
3513 c.lineTo(r, b);
3514 c.lineTo(r, h);
6937 var r = l + size;
6942 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, r, 0));
6943 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, r, t * 0.5));
6944 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, r, t));
6948 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, r, h));
6949 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, r, h - t * 0.5));
6950 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, r, b));
6951 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w + r) * 0.5, t));
6955 constr.push(new mxConnectionConstraint(new mxPoint(0, 0), false, null, (w + r) * 0.5, b));