| /external/python/cpython3/Lib/xml/etree/ |
| cElementTree.py | 1 # Deprecated alias for xml.etree.ElementTree 3 from xml.etree.ElementTree import *
|
| /external/markdown/markdown/ |
| etree_loader.py | 10 import xml.etree.cElementTree as etree_in_c 13 import xml.etree.ElementTree as etree 19 import elementtree.ElementTree as etree 28 elif etree.VERSION < "1.1": 32 return etree
|
| blockparser.py | 59 self.root = markdown.etree.Element(markdown.DOC_TAG) 61 return markdown.etree.ElementTree(self.root) 64 """ Parse a chunk of markdown text and attach to given etree node. 71 The ``parent`` etree Element passed in is altered in place. 78 """ Process blocks of markdown text and attach to given etree node.
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_xml_etree_c.py | 1 # xml.etree test for cElementTree
7 cET = test_support.import_module('xml.etree.cElementTree')
16 >>> from xml.etree import cElementTree
48 # Run the same test suite as xml.etree.ElementTree
49 test_xml_etree.test_main(module_name='xml.etree.cElementTree')
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_xml_etree_c.py | 1 # xml.etree test for cElementTree 7 cET = test_support.import_module('xml.etree.cElementTree') 16 >>> from xml.etree import cElementTree 48 # Run the same test suite as xml.etree.ElementTree 49 test_xml_etree.test_main(module_name='xml.etree.cElementTree')
|
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_xml_etree_c.py | 1 # xml.etree test for cElementTree 7 cET = test_support.import_module('xml.etree.cElementTree') 16 >>> from xml.etree import cElementTree 48 # Run the same test suite as xml.etree.ElementTree 49 test_xml_etree.test_main(module_name='xml.etree.cElementTree')
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_xml_etree_c.py | 1 # xml.etree test for cElementTree 7 cET = test_support.import_module('xml.etree.cElementTree') 16 >>> from xml.etree import cElementTree 48 # Run the same test suite as xml.etree.ElementTree 49 test_xml_etree.test_main(module_name='xml.etree.cElementTree')
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_xml_etree_c.py | 1 # xml.etree test for cElementTree 7 cET = test_support.import_module('xml.etree.cElementTree') 16 >>> from xml.etree import cElementTree 48 # Run the same test suite as xml.etree.ElementTree 49 test_xml_etree.test_main(module_name='xml.etree.cElementTree')
|
| /external/python/cpython3/Lib/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full 20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /external/markdown/markdown/extensions/ |
| rss.py | 2 from markdown import etree 65 rss = etree.Element("rss") 68 channel = etree.SubElement(rss, "channel") 74 element = etree.SubElement(channel, tag) 82 item = etree.SubElement(channel, "item") 83 link = etree.SubElement(item, "link") 85 title = etree.SubElement(item, "title") 89 guidElem = etree.SubElement(item, "guid") 95 description = etree.SubElement(item, "description") 101 content = "\n".join([etree.tostring(node [all...] |
| tables.py | 18 from markdown import etree 51 table = etree.SubElement(parent, 'table') 52 thead = etree.SubElement(table, 'thead') 54 tbody = etree.SubElement(table, 'tbody') 60 tr = etree.SubElement(parent, 'tr') 68 c = etree.SubElement(tr, tag)
|
| def_list.py | 23 from markdown import etree 62 dl = etree.SubElement(parent, 'dl') 65 dt = etree.SubElement(dl, 'dt') 69 dd = etree.SubElement(dl, 'dd') 84 dd = markdown.etree.SubElement(parent, 'dd')
|
| toc.py | 12 from markdown import etree 23 div = etree.Element("div") 29 header = etree.SubElement(div, "span") 68 newlist = etree.Element("ul") 90 last_li = etree.Element("li") 91 link = etree.SubElement(last_li, "a") 96 anchor = etree.SubElement(c, "a")
|
| /external/eigen/Eigen/src/SparseLU/ |
| SparseLU_heap_relax_snode.h | 38 * It assumes that the matrix has been reordered according to the postorder of the etree 42 * \param descendants Number of descendants of each node in the etree 49 // The etree may not be postordered, but its heap ordered 51 internal::treePostorder(StorageIndex(n), et, post); // Post order etree 55 // Renumber etree in postorder 62 et_save = et; // Save the original etree 65 // compute the number of descendants of each node in the etree 75 // Identify the relaxed supernodes by postorder traversal of the etree 78 Index nsuper_et_post = 0; // Number of relaxed snodes in postordered etree 79 Index nsuper_et = 0; // Number of relaxed snodes in the original etree [all...] |
| SparseLU_relax_snode.h | 39 * It assumes that the matrix has been reordered according to the postorder of the etree 43 * \param descendants Number of descendants of each node in the etree 50 // compute the number of descendants of each node in the etree 60 // Identify the relaxed supernodes by postorder traversal of the etree 71 // Found a supernode in postordered etree, j is the last column 76 } // End postorder traversal of the etree
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full
20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full
20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /external/python/cpython2/Lib/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full 20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full 20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /prebuilts/gdb/linux-x86/lib/python2.7/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full 20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full 20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/ |
| __init__.py | 14 etree -- The ElementTree XML library. This is a subset of the full 20 __all__ = ["dom", "parsers", "sax", "etree"]
|
| /frameworks/layoutlib/rename_font/ |
| test.py | 17 import xml.etree.ElementTree as etree 33 tree = etree.parse(ttx_path)
|
| /external/python/cpython2/Lib/test/ |
| test_xml_etree_c.py | 1 # xml.etree test for cElementTree 7 cET = test_support.import_module('xml.etree.cElementTree') 16 >>> from xml.etree import cElementTree 80 # Run the same test suite as xml.etree.ElementTree 81 test_xml_etree.test_main(module_name='xml.etree.cElementTree')
|
| /external/parameter-framework/upstream/tools/xmlValidator/ |
| xmlValidator.py | 31 from lxml import etree 66 xmlTree = etree.parse(xmlFilePath) 83 schemaContent = etree.parse(schemaFilePath) 84 schema = etree.XMLSchema(schemaContent) 85 xmlContent = etree.parse(xmlFilePath)
|