Lines Matching refs:start
19 protected $start; variable in Sabre\\VObject\\FreeBusyData
35 public function __construct($start, $end) argument
37 $this->start = $start;
42 'start' => $this->start,
51 * @param int $start
55 public function add($start, $end, $type) argument
57 if ($start > $this->end || $end < $this->start) {
62 if ($start < $this->start) {
64 $start = $this->start;
73 while ($start > $this->data[$currentIndex]['end']) {
82 'start' => $start,
88 if ($this->data[$insertStartIndex - 1]['start'] === $start) {
148 $this->data[$insertStartIndex - 1]['end'] = $start;