Home
last modified time | relevance | path

Searched refs:end (Results 426 – 450 of 1305) sorted by path

1...<<11121314151617181920>>...53

/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVJournal.php26 * @param DateTime $end
29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
38 return ($start <= $effectiveEnd && $end > $dtstart);
H A DVTodo.php26 * @param DateTime $end
29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
41 return $start <= $effectiveEnd && $end > $dtstart;
45 ($end > $dtstart || $end >= $due);
47 return $start <= $dtstart && $end > $dtstart;
51 return ($start < $due && $end >= $due);
56 ($end >= $created || $end >= $completed);
59 return ($start <= $completed && $end >= $completed);
62 return ($end > $created);
/plugin/davcal/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php45 protected $end; variable in Sabre\\VObject\\FreeBusyGenerator
76 * @param DateTime $end
83 if ($start && $end) {
84 $this->setTimeRange($start, $end);
151 * @param DateTime $end
157 $this->end = $end;
227 if ($this->end && $startTime > $this->end) {
242 if ($this->end && $startTime > $this->end) {
266 if ($this->end && $time[0] > $this->end) break;
300 if($this->end && $this->end < $startTime) continue;
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php105 list($start, $end) = explode('/', $item, 2);
110 if ($end[0]==='P') {
113 $end
116 $end = DateTimeParser::parseDateTime($end);
119 $end->format('Y-m-d\\TH:i:s'),
/plugin/davcal/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php168 $end = clone $this->startDate;
169 $end->add($duration);
170 $this->eventDuration = $end->getTimeStamp() - $this->startDate->getTimeStamp();
242 $end = clone $this->currentDate;
243 $end->modify('+' . $this->eventDuration . ' seconds');
244 return $end;
378 $offset = end($this->overriddenEventsIndex);
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Component/
H A DVAlarmTest.php14 public function testInTimeRange(VAlarm $valarm,$start,$end,$outcome) { argument
16 $this->assertEquals($outcome, $valarm->isInTimeRange($start, $end));
H A DVCalendarTest.php13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument
21 new \DateTime($end),
H A DVEventTest.php12 public function testInTimeRange(VEvent $vevent,$start,$end,$outcome) { argument
14 $this->assertEquals($outcome, $vevent->isInTimeRange($start, $end));
H A DVJournalTest.php13 public function testInTimeRange(VJournal $vtodo,$start,$end,$outcome) { argument
15 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
H A DVTodoTest.php14 public function testInTimeRange(VTodo $vtodo,$start,$end,$outcome) { argument
16 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
/plugin/davcal/vendor/sabre/xml/
H A DCHANGELOG.md147 * Fixed: The reader now detects when the end of the document is hit before it
/plugin/davcard/vendor/sabre/vobject/lib/Component/
H A DVAlarm.php82 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
97 if ($start <= $occurrence && $end > $occurrence) {
103 return ($start <= $effectiveTrigger && $end > $effectiveTrigger);
H A DVCalendar.php248 * @param DateTime $end
253 function expand(DateTime $start, DateTime $end, DateTimeZone $timeZone = null) { argument
282 if ($vevent->isInTimeRange($start, $end)) {
303 while($it->valid() && $it->getDTStart() < $end) {
H A DVEvent.php31 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
55 return ($it->getDTStart() < $end && $it->getDTEnd() > $start);
68 $effectiveEnd = $this->DTEND->getDateTime($end->getTimezone());
80 ($start < $effectiveEnd) && ($end > $effectiveStart)
H A DVFreeBusy.php24 * @param Datetime $end
27 public function isFree(\DateTime $start, \Datetime $end) { argument
55 if($start < $busyEnd && $end > $busyStart) {
H A DVJournal.php26 * @param DateTime $end
29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
38 return ($start <= $effectiveEnd && $end > $dtstart);
H A DVTodo.php26 * @param DateTime $end
29 public function isInTimeRange(\DateTime $start, \DateTime $end) { argument
41 return $start <= $effectiveEnd && $end > $dtstart;
45 ($end > $dtstart || $end >= $due);
47 return $start <= $dtstart && $end > $dtstart;
51 return ($start < $due && $end >= $due);
56 ($end >= $created || $end >= $completed);
59 return ($start <= $completed && $end >= $completed);
62 return ($end > $created);
/plugin/davcard/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php45 protected $end; variable in Sabre\\VObject\\FreeBusyGenerator
76 * @param DateTime $end
83 if ($start && $end) {
84 $this->setTimeRange($start, $end);
151 * @param DateTime $end
157 $this->end = $end;
227 if ($this->end && $startTime > $this->end) {
242 if ($this->end && $startTime > $this->end) {
266 if ($this->end && $time[0] > $this->end) break;
300 if($this->end && $this->end < $startTime) continue;
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php105 list($start, $end) = explode('/', $item, 2);
110 if ($end[0]==='P') {
113 $end
116 $end = DateTimeParser::parseDateTime($end);
119 $end->format('Y-m-d\\TH:i:s'),
/plugin/davcard/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php168 $end = clone $this->startDate;
169 $end->add($duration);
170 $this->eventDuration = $end->getTimeStamp() - $this->startDate->getTimeStamp();
242 $end = clone $this->currentDate;
243 $end->modify('+' . $this->eventDuration . ' seconds');
244 return $end;
371 $offset = end($this->overriddenEventsIndex);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Component/
H A DVAlarmTest.php14 public function testInTimeRange(VAlarm $valarm,$start,$end,$outcome) { argument
16 $this->assertEquals($outcome, $valarm->isInTimeRange($start, $end));
H A DVCalendarTest.php13 …public function testExpand($input, $output, $timeZone = 'UTC', $start = '2011-12-01', $end = '2011… argument
21 new \DateTime($end),
H A DVEventTest.php12 public function testInTimeRange(VEvent $vevent,$start,$end,$outcome) { argument
14 $this->assertEquals($outcome, $vevent->isInTimeRange($start, $end));
H A DVJournalTest.php13 public function testInTimeRange(VJournal $vtodo,$start,$end,$outcome) { argument
15 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));
H A DVTodoTest.php14 public function testInTimeRange(VTodo $vtodo,$start,$end,$outcome) { argument
16 $this->assertEquals($outcome, $vtodo->isInTimeRange($start, $end));

1...<<11121314151617181920>>...53