Lines Matching refs:commands
146 list($commands, $abbrs) = $this->_genCommandsAndAbbrs($calls);
149 $framework = $this->_genFramework($commands);
191 $commands = array();
228 if ($line_index >= 0 && !array_key_exists($line_index, $commands))
229 $commands[$line_index] = array ();
247 $commands[$line_index][] = $data['command'];
307 for ($i = 0; $i < count($commands); $i++)
309 $line_length = count($commands[$i]);
314 unset($commands[$i][$line_length - 1]);
317 return array($commands, $abbrs);
336 * @param array $commands specification scheme
339 function _genFramework ($commands) argument
342 $res['n_rows'] = count($commands) * 2;
346 for ($i = 0, $ir = 0; $i < count($commands); $i++, $ir += 2)
348 for ($j = 0, $jr = 0; $j < count($commands[$i]); $j++)
351 $cell_text = $commands[$i][$j];