Lines Matching refs:dom
18 $dom = dom_import_simplexml($this);
20 $new = $dom->insertBefore(
21 $dom->ownerDocument->createElement($name, $value),
22 $dom->firstChild
33 $dom = dom_import_simplexml($this);
36 $newNode = $dom->appendChild($domNode);
45 $dom = dom_import_simplexml($node);
46 $dom->parentNode->removeChild($dom);
56 $dom = dom_import_simplexml($this);
58 $g = $dom->ownerDocument->createElement('g');
59 while($dom->childNodes->length > 0) {
60 $child = $dom->childNodes->item(0);
61 $dom->removeChild($child);
64 $g = $dom->appendChild($g);