Lines Matching refs:end
26 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,
103 while ($end > $this->data[$currentIndex]['end']) {
115 if ($this->data[$currentIndex]['end'] <= $end) {
161 $this->data[$insertStartIndex + 1]['start'] = $end;