Lines Matching refs:storage
13 * @brief Object storage
25 private $storage = array();
32 rewind($this->storage);
39 return key($this->storage) !== false;
53 $element = current($this->storage);
62 $element = current($this->storage);
72 $this->storage[$this->index][1] = $inf;
80 next($this->storage);
84 /** @return number of objects in storage
88 return count($this->storage);
92 * @return whether $obj is contained in storage
98 foreach($this->storage as $element)
109 /** @param $obj new object to attach to storage or object whose
117 $this->storage[] = array($obj, $inf);
121 /** @param $obj object to remove from storage
127 foreach($this->storage as $idx => $element)
131 unset($this->storage[$idx]);
139 /** @param $obj new object to attach to storage or object whose
152 * storage
159 foreach($this->storage as $idx => $element)
180 * @return whether $obj is contained in storage