Lines Matching refs:options
50 $this->options = $config;
68 $this->options[$key] = $value;
74 $this->options[$key][] = $value;
76 $this->options[$key] = array($config[$key], $value);
79 $this->options[$key] = $value;
93 if (!is_executable($this->options['phpdbg'])) {
95 … $this->options, 'phpdbg could not be found at the specified path (%s)', $this->options['phpdbg']);
96 } else $this->options['phpdbg'] = realpath($this->options['phpdbg']);
98 $this->options['width'] = (integer) $this->options['width'];
101 if ($this->options['width'] < 50) {
102 $this->options['width'] = 50;
106 $this->options['lwidth'] = ceil($this->options['width'] / 3);
107 $this->options['rwidth'] = ceil($this->options['width'] - $this->options['lwidth']) - 5;
115 public function offsetExists($offset) { return isset($this->options[$offset]); }
116 public function offsetGet($offset) { return $this->options[$offset]; }
117 public function offsetUnset($offset) { unset($this->options[$offset]); }
118 public function offsetSet($offset, $data) { $this->options[$offset] = $data; }
120 protected $options = array(); variable in phpdbg\\testing\\TestsConfiguration
433 $options = sprintf('-i%s -nqb', $this->file);
435 if ($this->options) {
436 $options = sprintf(
438 $options,
440 $this->options
443 $options = sprintf(
444 '%s %s', $options, $this->config['options']
448 $result = `{$this->config['phpdbg']} {$options}`;
547 public $options; variable in phpdbg\\testing\\Test