Lines Matching refs:to
53 $to = array();
54 $common = $this->implementation->calculate($from, $to);
65 $to = $from;
66 $common = $this->implementation->calculate($from, $to);
70 $to = array(
80 $common = $this->implementation->calculate($from, $to);
90 $to = $range;
91 $common = $this->implementation->calculate($from, $to);
100 $to = array('B');
101 $common = $this->implementation->calculate($from, $to);
105 $to = array('D', 'E', 'F');
106 $common = $this->implementation->calculate($from, $to);
111 $to = \range($size + 1, $size * 2);
112 $common = $this->implementation->calculate($from, $to);
120 $to = array('A', 'B', 'D', 'E', 'H');
122 $common = $this->implementation->calculate($from, $to);
126 $to = array('B', 'C', 'D', 'E', 'F', 'H');
128 $common = $this->implementation->calculate($from, $to);
133 $to = $size < 3 ? array(1) : \range(1, $size + 1, 3);
135 $common = $this->implementation->calculate($from, $to);
145 $to = \array_slice($from, 0, 1);
146 $common = $this->implementation->calculate($from, $to);
148 $this->assertEquals($to, $common);
156 $to = \array_slice($from, (int) $size / 2, 1);
157 $common = $this->implementation->calculate($from, $to);
159 $this->assertEquals($to, $common);
167 $to = \array_slice($from, $size - 1, 1);
168 $common = $this->implementation->calculate($from, $to);
170 $this->assertEquals($to, $common);
177 $to = array('B', 'A');
179 $common = $this->implementation->calculate($from, $to);
184 $to = \array_reverse($from);
185 $common = $this->implementation->calculate($from, $to);