Home
last modified time | relevance | path

Searched refs:minidom (Results 1 – 25 of 39) sorted by relevance

12

/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxml_fix.py13 import xml.dom.minidom
52 self.write_data = xml.dom.minidom._write_data
53 self.writexml = xml.dom.minidom.Element.writexml
55 xml.dom.minidom._write_data = _Replacement_write_data
56 xml.dom.minidom.Element.writexml = _Replacement_writexml
60 xml.dom.minidom._write_data = self.write_data
61 xml.dom.minidom.Element.writexml = self.writexml
/third_party/node/tools/gyp/pylib/gyp/
Dxml_fix.py13 import xml.dom.minidom
52 self.write_data = xml.dom.minidom._write_data
53 self.writexml = xml.dom.minidom.Element.writexml
55 xml.dom.minidom._write_data = _Replacement_write_data
56 xml.dom.minidom.Element.writexml = _Replacement_writexml
60 xml.dom.minidom._write_data = self.write_data
61 xml.dom.minidom.Element.writexml = self.writexml
/third_party/python/Doc/library/
Dxml.dom.minidom.rst1 :mod:`xml.dom.minidom` --- Minimal DOM implementation
4 .. module:: xml.dom.minidom
11 **Source code:** :source:`Lib/xml/dom/minidom.py`
15 :mod:`xml.dom.minidom` is a minimal implementation of the Document Object
24 The :mod:`xml.dom.minidom` module is not secure against
30 :mod:`xml.dom.minidom`, this is done through the parse functions::
32 from xml.dom.minidom import parse, parseString
74 :mod:`xml.dom.minidom` module. Once you have a :class:`Document`, you
77 from xml.dom.minidom import getDOMImplementation
97 objects. :meth:`unlink` is an :mod:`xml.dom.minidom`\ -specific
[all …]
Dxml.dom.pulldom.rst65 ``node`` is an object of type :class:`xml.dom.minidom.Document`,
66 :class:`xml.dom.minidom.Element` or :class:`xml.dom.minidom.Text`.
123 :class:`xml.dom.minidom.Document` if event equals :data:`START_DOCUMENT`,
124 :class:`xml.dom.minidom.Element` if event equals :data:`START_ELEMENT` or
125 :data:`END_ELEMENT` or :class:`xml.dom.minidom.Text` if event equals
Dxml.rst41 * :mod:`xml.dom.minidom`: a minimal DOM implementation
64 kind sax etree minidom pulldom …
79 3. :mod:`xml.dom.minidom` doesn't expand external entities and simply returns
Dmarkup.rst21 xml.dom.minidom.rst
/third_party/python/Lib/xml/dom/
Dexpatbuilder.py30 from xml.dom import xmlbuilder, minidom, Node
33 from xml.dom.minidom import _append_child, _set_attribute_node
45 theDOMImplementation = minidom.getDOMImplementation()
49 "CDATA": minidom.TypeInfo(None, "cdata"),
50 "ENUM": minidom.TypeInfo(None, "enumeration"),
51 "ENTITY": minidom.TypeInfo(None, "entity"),
52 "ENTITIES": minidom.TypeInfo(None, "entities"),
53 "ID": minidom.TypeInfo(None, "id"),
54 "IDREF": minidom.TypeInfo(None, "idref"),
55 "IDREFS": minidom.TypeInfo(None, "idrefs"),
[all …]
Dpulldom.py161 import xml.dom.minidom
162 self.documentFactory = xml.dom.minidom.Document.implementation
/third_party/googletest/googletest/test/
Dgtest_xml_outfiles_test.py35 from xml.dom import minidom, Node
121 expected = minidom.parseString(expected_xml)
123 actual = minidom.parse(output_file1)
125 actual = minidom.parse(output_file2)
Dgtest_xml_output_unittest.py39 from xml.dom import minidom, Node
391 actual = minidom.parse(xml_path)
405 expected = minidom.parseString(expected_xml)
Dgtest_xml_test_utils.py33 from xml.dom import minidom, Node
/third_party/skia/third_party/externals/sfntly/cpp/tools/
Dfont_data_generator_xml.py19 import xml.dom.minidom as minidom namespace
38 doc = minidom.getDOMImplementation().createDocument(None,
Dgenerate_font_list_cc.py20 import xml.dom.minidom as minidom namespace
54 doc = minidom.parseString(open(xml_path, 'r').read())
/third_party/python/Doc/includes/
Dminidom-example.py1 import xml.dom.minidom
19 dom = xml.dom.minidom.parseString(document)
/third_party/vk-gl-cts/scripts/log/
Dlog_to_xml.py26 import xml.dom.minidom
142 dstDoc = xml.dom.minidom.Document()
Dlog_parser.py25 import xml.dom.minidom
204 doc = xml.dom.minidom.parseString(log)
/third_party/vk-gl-cts/external/openglcts/scripts/
Dmustpass.py26 import xml.dom.minidom as minidom namespace
234 reparsed = minidom.parseString(uglyString)
/third_party/node/tools/gyp/tools/
Dpretty_vcproj.py19 from xml.dom.minidom import parse
20 from xml.dom.minidom import Node
/third_party/protobuf/
Dupdate_version.py13 from xml.dom import minidom
65 document = minidom.parse(filename)
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/
Dpretty_vcproj.py19 from xml.dom.minidom import parse
20 from xml.dom.minidom import Node
/third_party/node/deps/v8/third_party/test262-harness/src/
D_packager.py8 import xml.dom.minidom
42 EXCLUDE_LIST = xml.dom.minidom.parse(EXCLUDED_FILENAME)
Dtest262.py21 import xml.dom.minidom
48 EXCLUDE_LIST = xml.dom.minidom.parse(EXCLUDED_FILENAME)
/third_party/vk-gl-cts/scripts/
Dmustpass.py33 import xml.dom.minidom as minidom namespace
314 reparsed = minidom.parseString(uglyString)
Dconvert_case_list_to_xml.py23 from xml.dom.minidom import Document
/third_party/python/Lib/test/
Dtest_minidom.py9 import xml.dom.minidom
11 from xml.dom.minidom import parse, Node, Document, parseString
12 from xml.dom.minidom import getDOMImplementation
34 notation = xml.dom.minidom.Notation("my-notation", None,
37 entity = xml.dom.minidom.Entity("my-entity", None,
843 document = xml.dom.minidom.parseString("""
1333 doc = xml.dom.minidom.getDOMImplementation().createDocument(

12