Lines Matching refs:end
26 protected $end; variable in Sabre\\VObject\\FreeBusyData
35 function __construct($start, $end) { argument
38 $this->end = $end;
43 'end' => $this->end,
53 * @param int $end
57 function add($start, $end, $type) { argument
59 if ($start > $this->end || $end < $this->start) {
70 if ($end > $this->end) {
72 $end = $this->end;
87 'end' => $end,
107 while ($end > $this->data[$currentIndex]['end']) {
121 if ($this->data[$currentIndex]['end'] <= $end) $itemsToDelete++;
165 $this->data[$insertStartIndex + 1]['start'] = $end;