Lines Matching refs:end

23489 	function getRotation(start, end) {  argument
23490 … return getAngle(end[1], end[0], PROPS_CLIENT_XY) + getAngle(start[1], start[0], PROPS_CLIENT_XY);
23500 function getScale(start, end) { argument
23501 …return getDistance(end[0], end[1], PROPS_CLIENT_XY) / getDistance(start[0], start[1], PROPS_CLIENT…
25540 function end(e) { function
25542 recognizer.off('panend', end);
25543 recognizer.off('pancancel', end);
25547 recognizer.on('panend', end);
25548 recognizer.on('pancancel', end);
25579 function end(e) { function
25581 recognizer.off('pinchend', end);
25582 recognizer.off('pinchcancel', end);
25588 recognizer.on('pinchend', end);
25589 recognizer.on('pinchcancel', end);
27495 function end(event) { function
27561 end(event);
27628 endDrag = end;
27645 componentEvent.unbind(document, 'touchend', end, true);
27703 endDrag = end;
27749 componentEvent.bind(document, 'touchend', end, true);
27786 this.end = end;
27910 function between(val, start, end) { argument
27911 if (start < val && val < end) {
28434 end: waypoints[intersection.index]
28437 alignment = pointsAligned(relevantSegment.start, relevantSegment.end);
28444 segmentLength = relevantSegment.end.x - relevantSegment.start.x;
28446 segmentLength = relevantSegment.end.y - relevantSegment.start.y;
30317 end = hints.connectionEnd || getMid(target);
30319 var waypoints = this.cropWaypoints(start, end, source, target);
30336 ConnectionPreview.prototype.cropWaypoints = function(start, end, source, target) { argument
30340 connectionPath = graphicsFactory.getConnectionPath({ waypoints: [ start, end ] });
30343 end = (target && getElementLineIntersection(targetPath, connectionPath, false)) || end;
30345 return [ start, end ];
30401 ConnectionPreview.prototype.createNoopConnection = function(start, end) { argument
30411 attr(connection, { 'points': [ start.x, start.y, end.x, end.y ] });
52941 function connectRectangles(source, target, start, end, hints) { argument
52954 end = end || getMid(target);
52962 endDocking = getDockingPoint(end, target, directionSplit[1], orientation);
52983 function repairConnection(source, target, start, end, waypoints, hints) { argument
52987 hints = end;
52990 end = getMid(target);
53004 repairedWaypoints = preferStraight && tryLayoutStraight(source, target, start, end, hints);
53011 … repairedWaypoints = hints.connectionEnd && tryRepairConnectionEnd(target, source, end, waypoints);
53030 return connectRectangles(source, target, start, end, hints);
53034 function inRange(a, start, end) { argument
53035 return a >= start && a <= end;
53058 function tryLayoutStraight(source, target, start, end, hints) { argument
53081 if (!isInRange(primaryAxis, end, source)) {
53085 axis[primaryAxis] = end[primaryAxis];
53097 x: end.x,
53098 y: end.y
53116 x: axis.x !== undefined ? axis.x : end.x,
53117 y: axis.y !== undefined ? axis.y : end.y,
53119 x: axis.x !== undefined ? axis.x : end.x,
53120 y: axis.y !== undefined ? axis.y : end.y
53641 function getBoundaryEventPreferredLayouts(source, target, end) { argument
53658 return getBoundaryEventLoopLayout(attachOrientation, attachedToSide, source, target, end);
53670 function getBoundaryEventLoopLayout(attachOrientation, attachedToSide, source, target, end) { argument
53677 targetLayout = shouldConnectToSameSide('y', source, target, end) ? 'h' : 'b';
53679 targetLayout = shouldConnectToSameSide('x', source, target, end) ? 'v' : 'l';
53688 function shouldConnectToSameSide(axis, source, target, end) { argument
53692 areCloseOnAxis(axis, end, target, threshold) ||
53693 areCloseOnAxis(axis, end, {
53697 areCloseOnAxis(axis, end, getMid(source), threshold)
55022 var end = { class in toBBox
55029 if ((start.x <= end.x && start.y < end.y) ||
55030 (start.x < end.x && start.y <= end.y)) {
55035 width: end.x - start.x,
55036 height: end.y - start.y
55038 } else if ((start.x >= end.x && start.y < end.y) ||
55039 (start.x > end.x && start.y <= end.y)) {
55042 x: end.x,
55044 width: start.x - end.x,
55045 height: end.y - start.y
55047 } else if ((start.x <= end.x && start.y > end.y) ||
55048 (start.x < end.x && start.y >= end.y)) {
55052 y: end.y,
55053 width: end.x - start.x,
55054 height: start.y - end.y
55056 } else if ((start.x >= end.x && start.y > end.y) ||
55057 (start.x > end.x && start.y >= end.y)) {
55060 x: end.x,
55061 y: end.y,
55062 width: start.x - end.x,
55063 height: start.y - end.y
55068 x: end.x,
55069 y: end.y,