Home
last modified time | relevance | path

Searched refs:end (Results 1226 – 1250 of 1305) sorted by path

1...<<41424344454647484950>>...53

/plugin/webdav/vendor/sabre/vobject/lib/Component/
H A DVEvent.php29 * @param DateTimeInterface $end
33 public function isInTimeRange(DateTimeInterface $start, DateTimeInterface $end) argument
52 return $it->getDTStart() < $end && $it->getDTEnd() > $start;
63 $effectiveEnd = $this->DTEND->getDateTime($end->getTimezone());
73 ($start < $effectiveEnd) && ($end > $effectiveStart)
H A DVFreeBusy.php25 * @param DateTimeInterface $end
29 public function isFree(DateTimeInterface $start, DatetimeInterface $end) argument
54 if ($start < $busyEnd && $end > $busyStart) {
H A DVJournal.php27 * @param DateTimeInterface $end
31 public function isInTimeRange(DateTimeInterface $start, DateTimeInterface $end) argument
40 return $start <= $effectiveEnd && $end > $dtstart;
H A DVTodo.php27 * @param DateTimeInterface $end
31 public function isInTimeRange(DateTimeInterface $start, DateTimeInterface $end) argument
43 return $start <= $effectiveEnd && $end > $dtstart;
47 ($end > $dtstart || $end >= $due);
49 return $start <= $dtstart && $end > $dtstart;
53 return $start < $due && $end >= $due;
58 ($end >= $created || $end >= $completed);
61 return $start <= $completed && $end >= $completed;
64 return $end > $created;
/plugin/webdav/vendor/sabre/vobject/lib/
H A DFreeBusyData.php26 protected $end; variable in Sabre\\VObject\\FreeBusyData
35 public function __construct($start, $end) argument
38 $this->end = $end;
43 'end' => $this->end,
52 * @param int $end
55 public function add($start, $end, $type) argument
57 if ($start > $this->end || $end < $this->start) {
66 if ($end > $this->end) {
68 $end = $this->end;
83 'end' => $end,
[all …]
H A DFreeBusyGenerator.php47 protected $end; variable in Sabre\\VObject\\FreeBusyGenerator
88 * @param DateTimeInterface $end
163 * @param DateTimeInterface $end
170 if (!$end) {
174 $this->end = $end;
197 $this->end->getTimeStamp()
411 if ($this->end && $startTime > $this->end) {
423 if ($this->end && $startTime > $this->end) {
445 if ($this->end && $time[0] > $this->end) {
485 if ($this->end && $this->end < $startTime) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/ICalendar/
H A DPeriod.php95 list($start, $end) = explode('/', $item, 2);
100 if ('P' === $end[0]) {
103 $end,
106 $end = DateTimeParser::parseDateTime($end);
109 $end->format('Y-m-d\\TH:i:s'),
/plugin/webdav/vendor/sabre/vobject/lib/Recur/
H A DEventIterator.php161 $end = clone $this->startDate;
162 $end = $end->add($duration);
163 $this->eventDuration = $end->getTimeStamp() - $this->startDate->getTimeStamp();
232 $end = clone $this->currentDate;
234 return $end->modify('+'.$this->eventDuration.' seconds');
356 $offsets = end($this->overriddenEventsIndex);
358 $offset = end($offsets);
/plugin/webdav/vendor/sabre/vobject/resources/schema/
H A Dxcal.rng257 element end {
/plugin/webdav/vendor/sabre/xml/
H A DCHANGELOG.md214 * Fixed: The reader now detects when the end of the document is hit before it
/plugin/webdavclient/
H A Dhelper.php1702 $end = $it->getDtEnd();
1703 while ($it->valid() && $end < $maxDate)
1705 $end = $it->getDtEnd();
1708 $lastOccurence = $end->getTimeStamp();
/plugin/webdavclient/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/webdavclient/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/webdavclient/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/webdavclient/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/webdavclient/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...<<41424344454647484950>>...53