Lines Matching refs:data

13     protected $data;
18 public function __construct($name, $data, $offset = -1) {
19 $this->data = array($name, $data, $offset);
26 return $this->data;
36 public function __construct($data) {
37 parent::__construct('nest', array($data));
47 public function __construct($name, $data, $type, $text, $offset = -1) {
48 parent::__construct('plugin', array($name, $data, $type, $text), $offset);
58 public function __construct($type, $attributes, $data = NULL) {
62 if (!empty($data)) {
63 $pluginData[2] = $data;
76 public function __construct($namespace, $data) {
77 parent::__construct('style', array('ns' => $namespace), $data);
87 public function __construct($namespace, $data) {
88 parent::__construct('map', array('ns' => $namespace), $data);
118 private $data;
125 public function __construct($list, &$data, $index) {
127 $this->data =& $data;
129 $this->name = ($data[0] == 'plugin') ? 'plugin_' . $data[1][0] : $data[0];
150 return $this->data[1][$index];
157 return $this->data[1][1][$index];
163 public function setPluginData($index, $data) {
164 $this->data[1][1][$index] = $data;
171 unset($this->data[1][1][$index]);
178 return array_key_exists($name, $this->data[1][1][1]) ? $this->data[1][1][1][$name] : '';
185 $this->data[1][1][1][$name] = $value;
192 unset($this->data[1][1][1][$name]);
244 return new refnotes_instruction_reference($this, $this->event->data->calls[$this->index], $this->index);
265 return array_key_exists($this->index, $this->event->data->calls);
272 return new refnotes_instruction_reference($this, $this->event->data->calls[$index], $index);
286 $this->extraCalls[count($this->event->data->calls)][] = $call;
304 $slice = array_slice($this->event->data->calls, $prevIndex, $index - $prevIndex);
315 $callCount = count($this->event->data->calls);
318 $slice = array_slice($this->event->data->calls, $prevIndex, $callCount - $prevIndex);
322 $offset = $this->event->data->calls[$callCount - 1][2];
333 $this->event->data->calls = $calls;