Home
last modified time | relevance | path

Searched refs:toxml (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_minidom.py88 and root.toxml() == "<doc><element/><foo/></doc>"
100 and root.toxml() == "<doc><element/><foo/><element/></doc>"
112 and root.toxml() ==
231 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAA")
244 self.confirm(el.toxml() == '<abc spam="jam2"/>', "testAAB")
423 domstr = dom.toxml()
465 dom.getElementsByTagName('B')[0].childNodes[0].toxml(),
466 dom2.getElementsByTagName('B')[0].childNodes[0].toxml())
547 and clone.toxml() == '<doc attr="value"/>'
556 and clone.toxml() == '<doc attr="value"><foo/></doc>'
[all …]
/external/parameter-framework/upstream/tools/xmlGenerator/
DhostConfig.py58 outfile.write(dom.toxml())
/external/python/cpython2/Lib/xml/dom/
Dxmlbuilder.py363 return snode.toxml()
Dminidom.py45 def toxml(self, encoding = None): member in Node
/external/python/cpython2/Doc/library/
Dxml.dom.minidom.rst154 .. method:: Node.toxml([encoding])
/external/python/cpython2/Doc/whatsnew/
D2.0.rst967 common methods, such as :meth:`toxml` which returns a string containing the XML
974 print perslist[0].toxml()
975 print perslist[1].toxml()
D2.3.rst1643 :meth:`toxml` and :meth:`toprettyxml` methods of DOM nodes.
/external/python/cpython2/Misc/
DNEWS9812 - Issue #1390: Raise ValueError in toxml when an invalid comment would
DHISTORY5540 - xml.dom.minidom.toxml and toprettyxml now take an optional encoding