Lines Matching refs:time

531         ms: a.time() - b.time() // time-of-day from day start. disregards timezone
1451 newMomentProto.time = function (time) {
1455 return oldMomentProto.time.apply(this, arguments);
1457 if (time == null) { // getter
1467 if (!moment.isDuration(time) && !moment.isMoment(time)) {
1468 time = moment.duration(time);
1473 if (moment.isDuration(time)) {
1474 dayHours = Math.floor(time.asDays()) * 24;
1478 return this.hours(dayHours + time.hours())
1479 .minutes(time.minutes())
1480 .seconds(time.seconds())
1481 .milliseconds(time.milliseconds());
1769 start.time(0);
1772 end.time(0);
3350 start.time(0);
3353 end.time(0);
5611 instanceStart.time(this.startTime);
5617 instanceEnd = zonedDayStart.clone().time(this.endTime);
5826 start.time(0).add(minTime);
5829 end.time(maxTime - (24 * 60 * 60 * 1000));
6947 … ' data-date="' + date.format('YYYY-MM-DD') + '"' : // if date has a time, won't format it
10547 var endTimeMS = +end.time(); // # of milliseconds into `endDay`
11261 var timeAdjust = date.time().asMilliseconds() - zonedDate.time().asMilliseconds();
11266 …if (date.time().asMilliseconds() - adjustedZonedDate.time().asMilliseconds() === 0) { // does it m…
11671 start.time(meta.startTime);
11722 startTime = eventProps.time;
11727 delete eventProps.time;
12922 … slotDate = calendar.msToUtcMoment(dateProfile.renderUnzonedRange.startMs).time(slotTime);
13094 TimeGrid.prototype.computeTimeTop = function (time) {
13097 …var slatCoverage = (time - dateProfile.minTime) / this.slotDuration; // floating-point value of # …
13190 var time = this.computeSnapTime(hit.snap); // pass in the snap-index
13192 start.time(time);