Lines Matching refs:from

52         $from   = array();
54 $common = $this->implementation->calculate($from, $to);
61 $from = array(
65 $to = $from;
66 $common = $this->implementation->calculate($from, $to);
68 $this->assertEquals($from, $common);
80 $common = $this->implementation->calculate($from, $to);
89 $from = $range;
91 $common = $this->implementation->calculate($from, $to);
99 $from = array('A');
101 $common = $this->implementation->calculate($from, $to);
104 $from = array('A', 'B', 'C');
106 $common = $this->implementation->calculate($from, $to);
110 $from = \range(1, $size);
112 $common = $this->implementation->calculate($from, $to);
119 $from = array('A', 'C', 'E', 'F', 'G');
122 $common = $this->implementation->calculate($from, $to);
125 $from = array('A', 'C', 'E', 'F', 'G');
128 $common = $this->implementation->calculate($from, $to);
132 $from = $size < 2 ? array(1) : \range(1, $size + 1, 2);
135 $common = $this->implementation->calculate($from, $to);
144 $from = \range(1, $size);
145 $to = \array_slice($from, 0, 1);
146 $common = $this->implementation->calculate($from, $to);
155 $from = \range(1, $size);
156 $to = \array_slice($from, (int) $size / 2, 1);
157 $common = $this->implementation->calculate($from, $to);
166 $from = \range(1, $size);
167 $to = \array_slice($from, $size - 1, 1);
168 $common = $this->implementation->calculate($from, $to);
176 $from = array('A', 'B');
179 $common = $this->implementation->calculate($from, $to);
183 $from = \range(1, $size);
184 $to = \array_reverse($from);
185 $common = $this->implementation->calculate($from, $to);