Lines Matching refs:vals
17 var $vals; // Struct created by xml_parse_into_struct variable in XMLParser
54 xml_parse_into_struct($parser, $this->data, $vals, $index);
58 return $this->getchildren($vals, $i);
62 function buildtag($thisvals, $vals, &$i, $type) { argument
75 $tag = array_merge($tag, $this->getchildren($vals, $i));
81 function getchildren($vals, &$i) { argument
85 if ($i > -1 && isset($vals[$i]['value']))
86 $children['VALUE'] = $vals[$i]['value'];
89 while (++$i < count($vals)) {
91 $type = $vals[$i]['type'];
96 $children['VALUE'] .= $vals[$i]['value'];
102 $name = $vals[$i]['tag'];
103 $tag = $this->buildtag($vals[$i], $vals, $i, $type);