Lines Matching refs:y

21 mxShapeSysMLComposite.prototype.paintForeground = function(c, x, y, w, h)  argument
31 shape.prototype.paintVertexShape.call(tmp, c, x, y, w, h); argument
63 var y2 = y;
168 mxShapeSysMLPackage.prototype.paintVertexShape = function(c, x, y, w, h) argument
170 c.translate(x, y);
171 this.background(c, x, y, w, h);
173 this.foreground(c, x, y, w, h);
176 mxShapeSysMLPackage.prototype.background = function(c, x, y, w, h) argument
182 mxShapeSysMLPackage.prototype.foreground = function(c, x, y, w, h) argument
208 return new mxPoint(bounds.x + labelX, bounds.y + 10);
252 mxShapeSysMLPackage2.prototype.paintVertexShape = function(c, x, y, w, h) argument
254 c.translate(x, y);
255 this.background(c, x, y, w, h);
257 this.foreground(c, x, y, w, h);
260 mxShapeSysMLPackage2.prototype.background = function(c, x, y, w, h) argument
266 mxShapeSysMLPackage2.prototype.foreground = function(c, x, y, w, h) argument
294 return new mxPoint(bounds.x + labelX, bounds.y + 10);
333 mxShapeSysMLNone.prototype.paintVertexShape = function(c, x, y, w, h) argument
368 mxShapeSysMLRect.prototype.paintVertexShape = function(c, x, y, w, h) argument
370 c.rect(x, y, w, h);
405 mxShapeSysMLPortOne.prototype.paintVertexShape = function(c, x, y, w, h) argument
407 c.rect(x + w * 0.05, y, w - w * 0.1, h);
464 mxShapeSysMLPortTwo.prototype.paintVertexShape = function(c, x, y, w, h) argument
466 c.rect(x + w * 0.05, y, w * 0.8, h);
523 mxShapeSysMLPortThree.prototype.paintVertexShape = function(c, x, y, w, h) argument
525 c.rect(x + w * 0.07, y, w * 0.86, h);
527 c.rect(x, y + h * 0.125, w * 0.14, h * 0.25);
529 c.rect(x, y + h * 0.625, w * 0.14, h * 0.25);
531 c.rect(x + w * 0.86, y + h * 0.375, w * 0.14, h * 0.25);
533 this.drawIn(c, x + w * 0.01, y + h * 0.2, w * 0.11, h * 0.10);
534 this.drawOut(c, x + w * 0.02, y + h * 0.7, w * 0.11, h * 0.10);
535 this.drawInOut(c, x + w * 0.88, y + h * 0.45, w * 0.1, h * 0.10);
538 mxShapeSysMLPortThree.prototype.drawIn = function(c, x, y, w, h) argument
541 c.moveTo(x, y + h * 0.5);
542 c.lineTo(x + w, y + h * 0.5);
543 c.moveTo(x + w * 0.75, y);
544 c.lineTo(x + w, y + h * 0.5);
545 c.lineTo(x + w * 0.75, y + h);
549 mxShapeSysMLPortThree.prototype.drawOut = function(c, x, y, w, h) argument
552 c.moveTo(x, y + h * 0.5);
553 c.lineTo(x + w, y + h * 0.5);
554 c.moveTo(x + w * 0.25, y);
555 c.lineTo(x, y + h * 0.5);
556 c.lineTo(x + w * 0.25, y + h);
560 mxShapeSysMLPortThree.prototype.drawInOut = function(c, x, y, w, h) argument
563 c.moveTo(x + w * 0.75, y);
564 c.lineTo(x + w, y + h * 0.5);
565 c.lineTo(x + w * 0.75, y + h);
566 c.moveTo(x + w * 0.25, y);
567 c.lineTo(x, y + h * 0.5);
568 c.lineTo(x + w * 0.25, y + h);
603 mxShapeSysMLPortFour.prototype.paintVertexShape = function(c, x, y, w, h) argument
605 c.rect(x + w * 0.05, y, w - w * 0.05, h);
663 mxShapeSysMLItemFlow.prototype.paintVertexShape = function(c, x, y, w, h) argument
670 c.rect(x, y + 10, w, h - 10);
675 c.rect(x + w * 0.5 - 10, y, 20, 20);
680 this.drawDown(c, x + w * 0.5 - 5, y + 2, 10, 16);
684 this.drawUp(c, x + w * 0.5 - 5, y + 2, 10, 16);
689 c.rect(x, y, w, h - 10);
694 c.rect(x + w * 0.5 - 10, y + h - 20, 20, 20);
699 this.drawUp(c, x + w * 0.5 - 5, y + h - 18, 10, 16);
703 this.drawDown(c, x + w * 0.5 - 5, y + h - 18, 10, 16);
708 c.rect(x + 10, y, w - 10, h);
713 c.rect(x, y + h * 0.5 - 10, 20, 20);
718 this.drawRight(c, x + 2, y + h * 0.5 - 5, 16, 10);
722 this.drawLeft(c, x + 2, y + h * 0.5 - 5, 16, 10);
727 c.rect(x, y, w - 10, h);
732 c.rect(x + w - 20, y + h * 0.5 - 10, 20, 20);
737 this.drawLeft(c, x + w - 18, y + h * 0.5 - 5, 16, 10);
741 this.drawRight(c, x + w - 18, y + h * 0.5 - 5, 16, 10);
746 mxShapeSysMLItemFlow.prototype.drawRight = function(c, x, y, w, h) argument
749 c.moveTo(x, y + h * 0.5);
750 c.lineTo(x + w, y + h * 0.5);
751 c.moveTo(x + w * 0.75, y);
752 c.lineTo(x + w, y + h * 0.5);
753 c.lineTo(x + w * 0.75, y + h);
757 mxShapeSysMLItemFlow.prototype.drawDown = function(c, x, y, w, h) argument
760 c.moveTo(x + w * 0.5, y);
761 c.lineTo(x + w * 0.5, y + h);
762 c.moveTo(x, y + h * 0.75);
763 c.lineTo(x + w * 0.5, y + h);
764 c.lineTo(x + w, y + h * 0.75);
768 mxShapeSysMLItemFlow.prototype.drawLeft = function(c, x, y, w, h) argument
771 c.moveTo(x, y + h * 0.5);
772 c.lineTo(x + w, y + h * 0.5);
773 c.moveTo(x + w * 0.25, y);
774 c.lineTo(x, y + h * 0.5);
775 c.lineTo(x + w * 0.25, y + h);
779 mxShapeSysMLItemFlow.prototype.drawUp = function(c, x, y, w, h) argument
782 c.moveTo(x + w * 0.5, y + h);
783 c.lineTo(x + w * 0.5, y);
784 c.moveTo(x, y + h * 0.25);
785 c.lineTo(x + w * 0.5, y);
786 c.lineTo(x + w, y + h * 0.25);
828 mxShapeSysMLItemFlowLeft.prototype.paintVertexShape = function(c, x, y, w, h) argument
830 c.rect(x + 10, y, w - 10, h);
832 c.rect(x, y + h * 0.25 - 10, 20, 20);
834 c.rect(x, y + h * 0.5 - 10, 20, 20);
836 c.rect(x, y + h * 0.75 - 10, 20, 20);
880 mxShapeSysMLItemFlowRight.prototype.paintVertexShape = function(c, x, y, w, h) argument
882 c.rect(x, y, w - 10, h);
884 c.rect(x + w - 20, y + h * 0.25 - 10, 20, 20);
886 c.rect(x + w - 20, y + h * 0.5 - 10, 20, 20);
888 c.rect(x + w - 20, y + h * 0.75 - 10, 20, 20);
932 mxShapeSysMLNestedPort.prototype.paintVertexShape = function(c, x, y, w, h) argument
934 c.rect(x + w * 0.08, y, w * 0.92, h);
936 c.rect(x + w * 0.03, y + h * 0.1, w * 0.1, h * 0.8);
938 c.rect(x, y + h * 0.15, w * 0.06, h * 0.16);
940 c.rect(x, y + h * 0.42, w * 0.06, h * 0.16);
942 c.rect(x, y + h * 0.69, w * 0.06, h * 0.16);
960 c.moveTo(pe.x - nx / 2 - ny / 2, pe.y - ny / 2 + nx / 2);
961 c.lineTo(pe.x - nx / 2 + ny / 2, pe.y - ny / 2 - nx / 2);
963 c.ellipse(pe.x - 0.5 * nx - a, pe.y - 0.5 * ny - a, 2 * a, 2 * a);
981 c.ellipse(pe.x - 0.5 * nx - a, pe.y - 0.5 * ny - a, 2 * a, 2 * a);
1000 c.moveTo(pe.x - ny / 2, pe.y + nx / 2);
1001 c.arcTo(a, a, 0, 0, 1, pe.x + ny / 2, pe.y - nx / 2);
1035 mxShapeSysMLParametricDiagram.prototype.paintVertexShape = function(c, x, y, w, h) argument
1037 c.roundrect(x, y, w, h, 10, 10);
1044 c.rect(x, y + h * 0.25 - 10, 20, 20);
1046 c.rect(x, y + h * 0.75 - 10, 20, 20);
1082 mxShapeSysMLConstraintProperty.prototype.paintVertexShape = function(c, x, y, w, h) argument
1084 c.rect(x, y, w, h);
1091 c.rect(x, y + 50, 20, 20);
1093 c.rect(x, y + 80, 20, 20);
1129 mxShapeSysMLCallBehaviorAction.prototype.paintVertexShape = function(c, x, y, w, h) argument
1131 c.roundrect(x, y, w, h, 10, 10);
1138 this.drawSymb(c, x + w - 30, y + h - 30, 20, 20);
1142 mxShapeSysMLCallBehaviorAction.prototype.drawSymb = function(c, x, y, w, h) argument
1145 c.moveTo(x + w * 0.5, y);
1146 c.lineTo(x + w * 0.5, y + h);
1147 c.moveTo(x, y + h);
1148 c.lineTo(x, y + h * 0.5);
1149 c.lineTo(x + w, y + h * 0.5);
1150 c.lineTo(x + w, y + h);
1210 mxShapeSysMLAcceptEventAction.prototype.paintVertexShape = function(c, x, y, w, h) argument
1213 c.moveTo(x, y);
1214 c.lineTo(x + w, y);
1215 c.lineTo(x + w, y + h);
1216 c.lineTo(x, y + h);
1217 c.lineTo(x + h * 0.3, y + h * 0.5);
1275 mxShapeSysMLTimeEvent.prototype.paintVertexShape = function(c, x, y, w, h) argument
1278 c.moveTo(x, y);
1279 c.lineTo(x + w, y);
1280 c.lineTo(x, y + h);
1281 c.lineTo(x + w, y + h);
1332 mxShapeSysMLSendSignalAction.prototype.paintVertexShape = function(c, x, y, w, h) argument
1335 c.moveTo(x, y);
1336 c.lineTo(x + w - h * 0.3, y);
1337 c.lineTo(x + w, y + h * 0.5);
1338 c.lineTo(x + w - h * 0.3, y + h);
1339 c.lineTo(x, y + h);
1397 mxShapeSysMLActivityFinal.prototype.paintVertexShape = function(c, x, y, w, h) argument
1399 c.ellipse(x, y, w, h);
1405 c.ellipse(x + 5, y + 5, w - 10, h - 10);
1456 mxShapeSysMLActivityParameterNode.prototype.paintVertexShape = function(c, x, y, w, h) argument
1458 c.translate(x, y);
1541 mxShapeSysMLControlOperator.prototype.paintVertexShape = function(c, x, y, w, h) argument
1543 c.translate(x, y);
1544 this.background(c, x, y, w, h);
1546 this.foreground(c, x, y, w, h);
1549 mxShapeSysMLControlOperator.prototype.background = function(c, x, y, w, h) argument
1555 mxShapeSysMLControlOperator.prototype.foreground = function(c, x, y, w, h) argument
1604 mxShapeSysMLFlowFinal.prototype.paintVertexShape = function(c, x, y, w, h) argument
1606 c.translate(x, y);
1668 mxShapeSysMLIsControl.prototype.paintVertexShape = function(c, x, y, w, h) argument
1670 c.translate(x, y);
1721 mxShapeSysMLIsStream.prototype.paintVertexShape = function(c, x, y, w, h) argument
1723 c.translate(x, y);
1782 mxShapeSysMLIsActStream.prototype.paintVertexShape = function(c, x, y, w, h) argument
1784 c.translate(x, y);
1854 mxShapeSysMLParameterSet.prototype.paintVertexShape = function(c, x, y, w, h) argument
1856 c.translate(x, y);
1928 mxShapeSysMLParameterActivitySet.prototype.paintVertexShape = function(c, x, y, w, h) argument
1930 c.translate(x, y);
2024 mxShapeSysMLProbability.prototype.paintVertexShape = function(c, x, y, w, h) argument
2026 c.translate(x, y);
2101 mxShapeSysMLActivityProbability.prototype.paintVertexShape = function(c, x, y, w, h) argument
2103 c.translate(x, y);
2200 mxShapeSysMLObjectFlowRight.prototype.paintVertexShape = function(c, x, y, w, h) argument
2202 c.translate(x, y);
2253 mxShapeSysMLObjectFlowLeft.prototype.paintVertexShape = function(c, x, y, w, h) argument
2255 c.translate(x, y);
2306 mxShapeSysMLActivityPartition.prototype.paintVertexShape = function(c, x, y, w, h) argument
2308 c.translate(x, y);
2350 mxShapeSysMLContinuation.prototype.paintVertexShape = function(c, x, y, w, h) argument
2352 c.translate(x, y);
2453 mxShapeSysMLCoregion.prototype.paintVertexShape = function(c, x, y, w, h) argument
2455 c.translate(x, y);
2486 c.moveTo(pe.x - nx / 2 - ny / 2, pe.y - ny / 2 + nx / 2);
2487 c.lineTo(pe.x + nx / 2 + ny / 2, pe.y + ny / 2 - nx / 2);
2489 c.moveTo(pe.x + nx / 2 - ny / 2, pe.y + ny / 2 + nx / 2);
2490 c.lineTo(pe.x - nx / 2 + ny / 2, pe.y - ny / 2 - nx / 2);
2524 mxShapeSysMLDimension.prototype.paintVertexShape = function(c, x, y, w, h) argument
2526 c.translate(x, y);
2527 this.background(c, x, y, w, h);
2530 mxShapeSysMLDimension.prototype.background = function(c, x, y, w, h) argument
2562 c.moveTo(pe.x - 1.5 * nx - ny / 2, pe.y - 1.5 * ny + nx / 2);
2563 c.lineTo(pe.x - nx / 2, pe.y - ny / 2);
2564 c.lineTo(pe.x - 1.5 * nx + ny / 2, pe.y - 1.5 * ny - nx / 2);
2567 c.ellipse(pe.x - 0.5 * nx - a, pe.y - 0.5 * ny - a, 2 * a, 2 * a);
2586 c.ellipse(pe.x - 0.5 * nx - a, pe.y - 0.5 * ny - a, 2 * a, 2 * a);
2623 mxShapeSysMLCompositeState.prototype.paintVertexShape = function(c, x, y, w, h) argument
2625 c.translate(x, y);
2626 this.background(c, x, y, w, h);
2629 mxShapeSysMLCompositeState.prototype.background = function(c, x, y, w, h) argument
2709 mxShapeSysMLRegion.prototype.paintVertexShape = function(c, x, y, w, h) argument
2714 c.translate(x, y);
2715 this.background(c, x, y, w, h, tabH, tabW);
2717 this.foreground(c, x, y, w, h, tabH, tabW);
2720 mxShapeSysMLRegion.prototype.background = function(c, x, y, w, h, tabH, tabW) argument
2732 mxShapeSysMLRegion.prototype.foreground = function(c, x, y, w, h, tabH, tabW) argument
2811 mxShapeSysMLSimpleState.prototype.paintVertexShape = function(c, x, y, w, h) argument
2813 c.translate(x, y);
2814 this.background(c, x, y, w, h);
2819 mxShapeSysMLSimpleState.prototype.background = function(c, x, y, w, h) argument
2826 mxShapeSysMLSimpleState.prototype.foreground = function(c, x, y, w, h) argument
2889 mxShapeSysMLStateMachine.prototype.paintVertexShape = function(c, x, y, w, h) argument
2891 c.translate(x, y);
2892 this.background(c, x, y, w, h);
2894 this.foreground(c, x, y, w, h);
2897 mxShapeSysMLStateMachine.prototype.background = function(c, x, y, w, h) argument
2903 mxShapeSysMLStateMachine.prototype.foreground = function(c, x, y, w, h) argument
2970 mxShapeSysMLX.prototype.paintVertexShape = function(c, x, y, w, h) argument
2972 c.translate(x, y);
3025 mxShapeSysMLSubmachineState.prototype.paintVertexShape = function(c, x, y, w, h) argument
3027 c.translate(x, y);
3028 this.background(c, x, y, w, h);
3030 this.foreground(c, x, y, w, h);
3033 mxShapeSysMLSubmachineState.prototype.background = function(c, x, y, w, h) argument
3039 mxShapeSysMLSubmachineState.prototype.foreground = function(c, x, y, w, h) argument
3106 mxShapeSysMLUseCaseExtensionPoints.prototype.paintVertexShape = function(c, x, y, w, h) argument
3108 c.translate(x, y);
3109 this.background(c, x, y, w, h);
3111 this.foreground(c, x, y, w, h);
3114 mxShapeSysMLUseCaseExtensionPoints.prototype.background = function(c, x, y, w, h) argument
3120 mxShapeSysMLUseCaseExtensionPoints.prototype.foreground = function(c, x, y, w, h) argument