Lines Matching defs:_

136 	public $_ = array();
197 if (count($this->_) > 0) {
198 $string .= ' $_ (';
199 foreach ($this->_ as $k => $v) {
219 if (isset($node->_[HDOM_INFO_INNER])) {
220 $string .= "'" . $node->_[HDOM_INFO_INNER] . "'";
344 if (isset($this->_[HDOM_INFO_INNER])) {
345 return $this->_[HDOM_INFO_INNER];
348 if (isset($this->_[HDOM_INFO_TEXT])) {
349 return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
386 if (isset($this->_[HDOM_INFO_OUTER])) {
387 return $this->_[HDOM_INFO_OUTER];
390 if (isset($this->_[HDOM_INFO_TEXT])) {
391 return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
396 if ($this->dom && $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]) {
397 $ret = $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]->makeup();
400 if (isset($this->_[HDOM_INFO_INNER])) {
403 $ret .= $this->_[HDOM_INFO_INNER];
411 if (isset($this->_[HDOM_INFO_END]) && $this->_[HDOM_INFO_END] != 0) {
420 if (isset($this->_[HDOM_INFO_INNER])) {
421 return $this->_[HDOM_INFO_INNER];
425 case HDOM_TYPE_TEXT: return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
471 if (isset($this->_[HDOM_INFO_TEXT])) {
472 return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
484 $ret .= $this->_[HDOM_INFO_SPACE][$i][0];
490 switch ($this->_[HDOM_INFO_QUOTE][$i])
498 . $this->_[HDOM_INFO_SPACE][$i][1]
500 . $this->_[HDOM_INFO_SPACE][$i][2]
508 return $ret . $this->_[HDOM_INFO_ENDSPACE] . '>';
523 if (!isset($this->_[HDOM_INFO_BEGIN])) { return array(); }
525 $head = array($this->_[HDOM_INFO_BEGIN] => 1);
574 $end = (!empty($this->_[HDOM_INFO_END])) ? $this->_[HDOM_INFO_END] : 0;
577 while (!isset($parent->_[HDOM_INFO_END]) && $parent !== null) {
581 $end += $parent->_[HDOM_INFO_END];
585 $nodes_start = $this->_[HDOM_INFO_BEGIN] + 1;
776 if ($pass) $ret[$node->_[HDOM_INFO_BEGIN]] = 1;
989 case 'outertext': return $this->_[HDOM_INFO_OUTER] = $value;
991 if (isset($this->_[HDOM_INFO_TEXT])) {
992 return $this->_[HDOM_INFO_TEXT] = $value;
994 return $this->_[HDOM_INFO_INNER] = $value;
998 $this->_[HDOM_INFO_SPACE][] = array(' ', '', '');
999 $this->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_DOUBLE;
1549 $this->root->_[HDOM_INFO_END] = $this->cursor;
1646 $this->root->_[HDOM_INFO_BEGIN] = -1;
1668 $node->_[HDOM_INFO_TEXT] = $s;
1815 $this->root->_[HDOM_INFO_END] = $this->cursor;
1846 $this->parent->_[HDOM_INFO_END] = 0;
1865 $this->parent->_[HDOM_INFO_END] = $this->cursor;
1873 $this->parent->_[HDOM_INFO_END] = 0; // No end tag
1887 $this->parent->_[HDOM_INFO_END] = $this->cursor;
1893 $this->parent->_[HDOM_INFO_END] = 0;
1901 $this->parent->_[HDOM_INFO_END] = $this->cursor;
1913 $node->_[HDOM_INFO_BEGIN] = $this->cursor;
1923 $node->_[HDOM_INFO_TEXT] = '<' . $tag . $this->copy_until_char('>');
1933 if ($this->char === '>') { $node->_[HDOM_INFO_TEXT] .= '>'; }
1944 $node->_[HDOM_INFO_TEXT] = $tag;
1952 $node->_[HDOM_INFO_TEXT] = '<' . $tag . $this->copy_until('<>');
1961 if ($this->char === '>') { $node->_[HDOM_INFO_TEXT] .= '>'; }
1976 $this->parent->_[HDOM_INFO_END] = 0;
2007 $node->_[HDOM_INFO_END] = 0;
2008 $node->_[HDOM_INFO_TEXT] = '<' . $tag . $space[0] . $name;
2020 $node->_[HDOM_INFO_END] = 0;
2021 $node->_[HDOM_INFO_TEXT] = substr(
2045 $node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_NO;
2050 $node->_[HDOM_INFO_SPACE][] = $space;
2064 $node->_[HDOM_INFO_ENDSPACE] = $space[0];
2068 $node->_[HDOM_INFO_ENDSPACE] .= '/';
2069 $node->_[HDOM_INFO_END] = 0;
2083 $node->_[HDOM_INFO_INNER] = $this->default_br_text;
2132 $node->_[HDOM_INFO_QUOTE][] = $quote_type;
2150 $node->_[HDOM_INFO_TEXT] = '</' . $tag . '>';