Home | History | Annotate | Download | only in ASCIIMathPHP-2.0

Lines Matching defs:node

86     function addChild(&$node)
88 $this->_child_arr[$node->getId()] = $node;
89 $node->setParentId($this->_id);
90 $node->setParentNode($this);
99 $node = $node_arr[$key_arr[$i]];
100 $this->addChild($node);
104 function insertChildBefore($idx,&$node)
112 $tmp_arr[$node->getId()] = $node;
119 function insertChildAfter($idx,&$node)
128 $tmp_arr[$node->getId()] = $node;
179 function setParentNode(&$node)
181 $this->_parent_node = $node;
323 $node = $this->_child_arr[$key_arr[$i]];
325 $child_txt = $node->dumpXML($indent_str);
379 $node = $this->getParentNode();
380 $lvl = $node->_getCurrentLevel();
450 * Returns an empty node (containing a non-breaking space) 26-Apr-2006
483 // <math> node
488 // <mstyle> node
650 // Checking if Node 5 has a LastChild
660 // Checking if Node 5 has a firstChild
701 // Checking each node in node array for matrix criteria
728 // If the node passes the matrix tests
1017 // Return an empty node
1049 $node = new MathMLNode($this->_node_cntr);
1050 // $node->setNamespaceAlias('m');
1051 $this->_node_arr[$this->_node_cntr] = $node;
1053 return($node);