Lines Matching refs:nodes

131 	public $nodes = array();  variable in imapmarkers\\simple_html_dom_node
139 $dom->nodes[] = $this;
152 $this->nodes = null;
170 if ($this->nodes) {
171 foreach ($this->nodes as $node) {
217 $string .= ' nodes: ' . count($this->nodes);
235 $this->parent->nodes[] = $this;
338 foreach ($this->nodes as $n) {
379 if ($this->dom && $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]) {
380 $ret = $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]->makeup();
388 } elseif ($this->nodes) {
389 foreach ($this->nodes as $n) {
429 if (!is_null($this->nodes)) {
430 foreach ($this->nodes as $n) {
531 $n = ($k === -1) ? $this->dom->root : $this->dom->nodes[$k];
552 $found[] = $this->dom->nodes[$k];
571 $nodes = array();
589 $nodes = array_slice($this->dom->nodes, $nodes_start, $nodes_count, true);
591 $nodes = $this->children;
597 $nodes[] = $this->parent->children[$index];
602 $nodes = array_slice($this->parent->children, $index);
608 foreach ($nodes as $node) {
618 $ret[array_search($node, $this->dom->nodes, true)] = 1;
1324 $nidx = array_search($node, $this->nodes, true);
1326 $didx = array_search($node, $this->dom->nodes, true);
1334 foreach ($node->nodes as $entity) {
1335 $enidx = array_search($entity, $node->nodes, true);
1336 $edidx = array_search($entity, $node->dom->nodes, true);
1339 unset($node->nodes[$enidx]);
1340 unset($node->dom->nodes[$edidx]);
1344 unset($this->nodes[$nidx]);
1346 unset($this->dom->nodes[$didx]);
1410 public $nodes = array(); variable in imapmarkers\\simple_html_dom
1599 if (isset($this->nodes)) {
1600 foreach ($this->nodes as $n) {
1646 $this->nodes = array();
2147 $this->parent->nodes[] = $node;
2337 return @end(str_get_html($value)->nodes);