Lines Matching refs:eventInstances

2227     var eventInstances = [];
2230 eventInstances.push.apply(eventInstances, // append field
2233 return eventInstances;
2268 function EventInstanceGroup(eventInstances) {
2269 this.eventInstances = eventInstances || [];
2276 return this.eventInstances.map(util_1.eventInstanceToEventRange);
2288 var eventInstances = this.eventInstances;
2293 for (i = 0; i < eventInstances.length; i++) {
2294 eventInstance = eventInstances[i];
2303 var unzonedRanges = this.eventInstances.map(util_1.eventInstanceToUnzonedRange);
2314 return this.explicitEventDef || this.eventInstances[0].def;
8446 var eventInstances;
8451eventInstances = this.parseEventDefToInstances(constraintVal); // handles recurring events property
8452 if (!eventInstances) { // invalid input. fallback to parsing footprint directly
8456 return this.eventInstancesToFootprints(eventInstances);
8460 eventInstances = this.eventManager.getEventInstancesWithId(constraintVal); property
8461 return this.eventInstancesToFootprints(eventInstances);
8472 return this.eventInstancesToFootprints(eventInstanceGroup.eventInstances);
8479 Constraints.prototype.eventInstancesToFootprints = function (eventInstances) {
8480 var eventRanges = eventInstances.map(util_1.eventInstanceToEventRange);
8779 var eventInstances = eventDef.buildInstances(this.unzonedRange);
8783 for (i = 0; i < eventInstances.length; i++) {
8784 this.addEventInstance(eventInstances[i], eventDefId);
8818 var eventInstances = [];
8821 eventInstances.push.apply(eventInstances, // append field
8822 eventInstanceGroupsById[id].eventInstances);
8824 return eventInstances;
8829 return eventInstanceGroup.eventInstances.slice(); // clone
8840 eventInstanceGroupsById[id].eventInstances);
8849 eventInstanceGroup.eventInstances.push(eventInstance);
8857 …removeCnt = util_1.removeMatching(eventInstanceGroup.eventInstances, function (currentEventInstanc…
8860 if (!eventInstanceGroup.eventInstances.length) {
10573 var eventInstances;
10577 eventInstances = eventsPayload[eventDefId].eventInstances; property
10578 for (i = 0; i < eventInstances.length; i++) {
10579 legacyEvents.push(eventInstances[i].toLegacy());