Lines Matching refs:shapes

26184 	    allConnected = allConnected.concat(source.attachers.reduce(function(shapes, attacher) {  argument
26185 return shapes.concat(getConnected(attacher));
38446 shapes: selectedElements
40008 var shapes = context.shapes,
40011 if (shapes.length !== 1) {
40015 var shape = shapes[0];
40018 context.shapes = [ self.replaceShape(shape, host) ];
40935 shapes = context.shapes;
40937 var dataStoreReferences = shapes.filter(function(shape) {
40947 context.hints.autoResize = shapes.filter(function(shape) {
41196 var shapes = context.shapes,
41199 shapes.forEach(function(shape, index) {
41202 if (shouldReplace(shape, includes$6(shapes, host) ? host : newHost)) {
41203 shapes[ index ] = self.replaceShape(shape);
41350 shapes = context.shapes,
41352 shape = shapes[0];
41373 var canInsert = bpmnRules.canInsert(shapes, element);
41387 var shapes = context.shapes,
41392 insertShape(shapes[0], targetFlow, position);
43743 var shapes = context.shapes,
43748 forEach(shapes, function(shape) {
44456 shapes = context.shapes,
44459 return canAttach(shapes, target, null, position) ||
44460 canReplace(shapes, target, position) ||
44461 canMove(shapes, target) ||
44462 canInsert(shapes, target);
46519 shapes = context.shapes,
46522 context.shapes = removeLabels(shapes);
46530 shapes = context.shapes;
46534 forEach(shapes, function(element) {
46538 if (!label.hidden && context.shapes.indexOf(label) === -1) {
46689 shapes = context.shapes,
46692 context.shapes = addAttached(shapes);
46701 shapes = context.shapes,
46702 attachers = getAttachers(shapes);
46716 shapes = context.shapes;
46718 if (shapes.length !== 1) {
46722 var shape = shapes[0];
46742 shapes = context.shapes,
46743 attachers = getAttachers(shapes);
46754 shapes = context.shapes,
46760 if (newHost && shapes.length !== 1) {
46765 attachers = shapes;
46769 attachers = filter(shapes, function(shape) {
46772 return isAttacher(shape) && !includes$4(shapes, host);
46784 var shapes = e.context.shapes;
46786 forEach(shapes, function(shape) {
46840 shapes: [attacher]
46917 function getAttachers(shapes) { argument
46918 return flatten(map$1(shapes, function(s) {
47434 shapes: elements.resizingShapes,
49993 context.closure = this._helper.getClosure(context.shapes);
50502 SpaceToolHandler.prototype.moveShapes = function(shapes, delta) { argument
50505 forEach(shapes, function(element) {
50514 SpaceToolHandler.prototype.resizeShapes = function(shapes, delta, direction) { argument
50517 forEach(shapes, function(shape) {
50966 Modeling$1.prototype.moveElements = function(shapes, delta, target, hints) { argument
50985 shapes: shapes,
53918 function canMove(shapes, delta, position, target) { argument
53921 shapes: shapes,
53946 shapes = selection.get().slice();
53950 if (shapes.indexOf(shape) === -1) {
53951 shapes = [ shape ];
53956 shapes = removeNested(shapes);
53960 shapes: shapes,
53961 validatedShapes: shapes,
54021 shapes = context.shapes;
54038 modeling.moveElements(shapes, delta, context.target, {
54155 function getVisualDragShapes(shapes) { argument
54156 var elements = getAllDraggedElements(shapes);
54163 function getAllDraggedElements(shapes) { argument
54164 var allShapes = selfAndAllChildren(shapes, true);
54215 dragShapes = context.shapes,