Lines Matching refs:c

516 	  forEach(collections, function (c) {  argument
517 return groupBy(c, extractor, grouped);
959 var c;
962 c = el.childNodes[0];
963 el.removeChild(c);
1772 function createMatrix(a, b, c, d, e, f) { argument
1784 c: c,
2604 function handleConnection(c) { argument
2605 if (topLevel[c.source.id] && topLevel[c.target.id]) {
2606 topLevel[c.id] = [ c ];
2611 if (allShapes[c.source.id] && allShapes[c.target.id]) {
2612 enclosedConnections[c.id] = enclosedElements[c.id] = c;
2615 allConnections[c.id] = c;
3267 var paramCounts = { a: 7, c: 6, h: 1, l: 2, m: 2, q: 4, s: 4, t: 2, v: 1, z: 0 }, property in parsePathString.paramCounts
3276 String(pathString).replace(pathCommand, function(a, b, c) { argument
3280 c.replace(pathValues, function(a, b) {
3895 a, b, c, t, t1, t2, b2ac, sqrtb2ac;
3902 c = 3 * x1 - 3 * x0;
3906 c = 3 * y1 - 3 * y0;
3915 t = -c / b;
3924 b2ac = b * b - 4 * c * a;
5429 var mstr = 'matrix(' + m.a + ',' + m.b + ',' + m.c + ',' + m.d + ',' + m.e + ',' + m.f + ')';
7284 (m.__init__ || []).forEach(function(c) { argument
7285 components.push(c);
7293 components.forEach(function(c) { argument
7298 injector[typeof c === 'string' ? 'get' : 'invoke'](c);
21431 var container = find(this._overlayContainers, function(c) { argument
21432 return c.element === element;
35986 return shape.children.filter(function(c) { argument
35987 return is$1(c, 'bpmn:Lane');
39849 element.incoming.map(function(c) { argument
39850 return c.waypoints[c.waypoints.length - 2 ];
39852 element.outgoing.map(function(c) { argument
39853 return c.waypoints[1];
41734 var denominator, a, b, c, numerator;
41746 c = numerator / denominator;
41751 x: Math.round(l1s.x + (c * (l1e.x - l1s.x))),
41752 y: Math.round(l1s.y + (c * (l1e.y - l1s.y)))
41911 function solveLambaSystem(a, b, c) { argument
41915 { n: a[0] - c[0], lambda: b[0] },
41916 { n: a[1] - c[1], lambda: b[1] }
42126 var c = caX * caX + caY * caY - cr * cr;
42129 var q = c / a;
49132 return some(source.outgoing, function(c) { argument
49133 return c.target === target;
49957 forEach(allConnections, function(c) { argument
49959 var sourceMoved = !!allShapes[c.source.id],
49960 targetMoved = !!allShapes[c.target.id];
49962 if (enclosedConnections[c.id] && sourceMoved && targetMoved) {
49963 modeling.moveConnection(c, delta, topLevel[c.id] && !keepParent && newParent);
49965 modeling.layoutConnection(c, {
49966 connectionStart: sourceMoved && getMovedSourceAnchor(c, c.source, delta),
49967 connectionEnd: targetMoved && getMovedTargetAnchor(c, c.target, delta)
50064 forEach(shape.incoming, function(c) { argument
50065 modeling.layoutConnection(c, {
50066 connectionEnd: getMovedTargetAnchor(c, shape, delta)
50070 forEach(shape.outgoing, function(c) { argument
50071 modeling.layoutConnection(c, {
50072 connectionStart: getMovedSourceAnchor(c, shape, delta)
50429 forEach(shape.incoming, function(c) { argument
50430 modeling.layoutConnection(c, {
50431 connectionEnd: getResizedTargetAnchor(c, shape, oldBounds)
50435 forEach(shape.outgoing, function(c) { argument
50436 modeling.layoutConnection(c, {
50437 connectionStart: getResizedSourceAnchor(c, shape, oldBounds)
51777 return filter(element.children, function(c) { argument
51778 return c !== shape;
52081 var children = root.children.filter(function(c) { argument
52082 return is$1(c, 'bpmn:FlowNode');