Lines Matching defs:_

139 	public $_ = array();
200 if (count($this->_) > 0) {
201 $string .= ' $_ (';
202 foreach ($this->_ as $k => $v) {
222 if (isset($node->_[HDOM_INFO_INNER])) {
223 $string .= "'" . $node->_[HDOM_INFO_INNER] . "'";
347 if (isset($this->_[HDOM_INFO_INNER])) {
348 return $this->_[HDOM_INFO_INNER];
351 if (isset($this->_[HDOM_INFO_TEXT])) {
352 return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
389 if (isset($this->_[HDOM_INFO_OUTER])) {
390 return $this->_[HDOM_INFO_OUTER];
393 if (isset($this->_[HDOM_INFO_TEXT])) {
394 return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
399 if ($this->dom && $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]) {
400 $ret = $this->dom->nodes[$this->_[HDOM_INFO_BEGIN]]->makeup();
403 if (isset($this->_[HDOM_INFO_INNER])) {
406 $ret .= $this->_[HDOM_INFO_INNER];
414 if (isset($this->_[HDOM_INFO_END]) && $this->_[HDOM_INFO_END] != 0) {
423 if (isset($this->_[HDOM_INFO_INNER])) {
424 return $this->_[HDOM_INFO_INNER];
428 case HDOM_TYPE_TEXT: return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
474 if (isset($this->_[HDOM_INFO_TEXT])) {
475 return $this->dom->restore_noise($this->_[HDOM_INFO_TEXT]);
487 $ret .= @$this->_[HDOM_INFO_SPACE][$i][0];
493 switch (@$this->_[HDOM_INFO_QUOTE][$i])
501 . @$this->_[HDOM_INFO_SPACE][$i][1]
503 . @$this->_[HDOM_INFO_SPACE][$i][2]
511 return $ret . $this->_[HDOM_INFO_ENDSPACE] . '>';
526 if (!isset($this->_[HDOM_INFO_BEGIN])) { return array(); }
528 $head = array($this->_[HDOM_INFO_BEGIN] => 1);
577 $end = (!empty($this->_[HDOM_INFO_END])) ? $this->_[HDOM_INFO_END] : 0;
580 while (!isset($parent->_[HDOM_INFO_END]) && $parent !== null) {
584 $end += $parent->_[HDOM_INFO_END];
588 $nodes_start = $this->_[HDOM_INFO_BEGIN] + 1;
772 if ($pass) $ret[$node->_[HDOM_INFO_BEGIN]] = 1;
985 case 'outertext': return $this->_[HDOM_INFO_OUTER] = $value;
987 if (isset($this->_[HDOM_INFO_TEXT])) {
988 return $this->_[HDOM_INFO_TEXT] = $value;
990 return $this->_[HDOM_INFO_INNER] = $value;
994 $this->_[HDOM_INFO_SPACE][] = array(' ', '', '');
995 $this->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_DOUBLE;
1543 $this->root->_[HDOM_INFO_END] = $this->cursor;
1640 $this->root->_[HDOM_INFO_BEGIN] = -1;
1662 $node->_[HDOM_INFO_TEXT] = $s;
1809 $this->root->_[HDOM_INFO_END] = $this->cursor;
1840 $this->parent->_[HDOM_INFO_END] = 0;
1859 $this->parent->_[HDOM_INFO_END] = $this->cursor;
1867 $this->parent->_[HDOM_INFO_END] = 0; // No end tag
1881 $this->parent->_[HDOM_INFO_END] = $this->cursor;
1887 $this->parent->_[HDOM_INFO_END] = 0;
1895 $this->parent->_[HDOM_INFO_END] = $this->cursor;
1907 $node->_[HDOM_INFO_BEGIN] = $this->cursor;
1917 $node->_[HDOM_INFO_TEXT] = '<' . $tag . $this->copy_until_char('>');
1927 if ($this->char === '>') { $node->_[HDOM_INFO_TEXT] .= '>'; }
1938 $node->_[HDOM_INFO_TEXT] = $tag;
1946 $node->_[HDOM_INFO_TEXT] = '<' . $tag . $this->copy_until('<>');
1955 if ($this->char === '>') { $node->_[HDOM_INFO_TEXT] .= '>'; }
1970 $this->parent->_[HDOM_INFO_END] = 0;
2001 $node->_[HDOM_INFO_END] = 0;
2002 $node->_[HDOM_INFO_TEXT] = '<' . $tag . $space[0] . $name;
2014 $node->_[HDOM_INFO_END] = 0;
2015 $node->_[HDOM_INFO_TEXT] = substr(
2039 $node->_[HDOM_INFO_QUOTE][] = HDOM_QUOTE_NO;
2044 $node->_[HDOM_INFO_SPACE][] = $space;
2058 $node->_[HDOM_INFO_ENDSPACE] = $space[0];
2062 $node->_[HDOM_INFO_ENDSPACE] .= '/';
2063 $node->_[HDOM_INFO_END] = 0;
2077 $node->_[HDOM_INFO_INNER] = $this->default_br_text;
2126 $node->_[HDOM_INFO_QUOTE][] = $quote_type;
2144 $node->_[HDOM_INFO_TEXT] = '</' . $tag . '>';